文章40 | 阅读 19319 | 点赞0
至此,Hibernate-5.0.7、Struts-2.3.24和Spring-4.2.4这三个框架,我们已经都过了一遍了。现在,咱就要学习如何整合这三个框架进行开发了。在这之前,咱就来先回顾一下这三个框架。
Hibernate-5.0.7、Struts-2.3.24和Spring-4.2.4这三个框架都会应用在JavaEE三层结构中,每一层都用到了不同的框架。SSH框架整合的思想可以用下图来表示。
Hibernate-5.0.7、Struts-2.3.24和Spring-4.2.4这三个框架的整合一共有三种方式,它们分别是:
本讲只讲第一种方式和第二种方式。
首先创建一个动态web项目,例如S2SH,然后要导入这三个框架开发所依赖jar包,那要导入哪些jar包呢?因为要整合这三个框架,所以要导入的jar包可多了。
要进行Struts2的基本的开发,可以参考struts-2.3.24中的apps目录下的一些示例代码。其中struts2-blank.war就是Struts2一个空的工程,解压struts2-blank.war之后,进入到WEB-INF下的lib目录中查看,你就能看到Struts2基本的开发jar包,所以我们得将这些jar包导入到咱的项目中。
除此之外,对于Struts2这个框架,我们还需要了解struts-2.3.24\lib目录下的这3个jar包。
这时,你就会发现导入Struts2和Hibernate的jar包时,Struts2和Hibernate都引入了一个相同的jar包,Struts2引入的是javassist-3.11.0.GA.jar这样一个jar包,Hibernate引入的是javassist-3.18.1-GA.jar这样一个jar包,这两个jar包功能相同,但版本不一样,就很容易出现包冲突的问题,为了解决这个问题,咱必须得删除一个,删除javassist-3.11.0.GA.jar这个低版本的jar包即可。
这时,对于Struts2中的两个与日志记录相关的jar包(log4j-api-2.2.jar和log4j-core-2.2.jar)而言,你可以选择删除掉,但是你要是愿意留着,也不影响。
这时,com.springsource.org.apache.log4j-1.2.15.jar这个日志记录的包可以不要(因为已经有了log4j-1.2.16.jar),但com.springsource.org.apache.commons.logging-1.1.1.jar这个jar包必须得有。
为了避免麻烦,干脆导入以上所有有关Spring框架开发的所须jar包。
首先,创建Struts2的核心配置文件,该核心配置文件的位置是在src目录下面,名称是struts.xml,一开始该文件的内容肯定是空的。
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
</struts>
温馨提示:在Struts2和Spring框架整合的时候,Struts2核心配置文件的名称和位置是有固定要求的,即名称只能是struts.xml,且必须位于src目录下面。
然后,配置Struts2的核心过滤器,即在web.xml配置文件中添加如下配置。
首先,创建Hibernate核心配置文件,该核心配置文件的位置是在src目录下面,名称是hibernate.cfg.xml。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- 下面是三个必须要有的配置 -->
<!-- 配置连接MySQL数据库的基本参数 -->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql:///ssh1</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">liayun</property>
<!-- 配置Hibernate的方言 -->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- 下面三个是可选的配置哟! -->
<!-- 打印sql语句 -->
<property name="hibernate.show_sql">true</property>
<!-- 格式化sql语句 -->
<property name="hibernate.format_sql">true</property>
<!-- 自动创建表 -->
<property name="hibernate.hbm2ddl.auto">update</property>
<!-- 配置C3P0连接池 -->
<property name="connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
<!--在连接池中可用的数据库连接的最少数目 -->
<property name="c3p0.min_size">5</property>
<!--在连接池中所有数据库连接的最大数目 -->
<property name="c3p0.max_size">20</property>
<!--设定数据库连接的过期时间,以秒为单位, 如果连接池中的某个数据库连接处于空闲状态的时间超过了timeout时间,就会从连接池中清除 -->
<property name="c3p0.timeout">120</property>
<!--每3000秒检查所有连接池中的空闲连接 以秒为单位-->
<property name="c3p0.idle_test_period">3000</property>
</hibernate-configuration>
在编写以上文件中的内容时,需要注意以下几个点。
因为在Spring里面已经帮我们做好了,不用我们在Hibernate这边去搞这些事情了。其实,session最终是要交给Spring去管理的,Spring帮我们弄的那个session就已经与线程绑定了。
事务隔离级别现在写在这儿也没啥用,因为我们的事务最终都是要交给Spring去管理的。
然后,咱应该还要引入实体类的映射配置文件。但这个得等到后面我们去编写实体类时,再引入与其相关的映射配置文件即可,现在先别急着写。
首先,咱得引入Spring的配置文件(即applicationContext.xml),一开始该文件的内容肯定是空的,只不过包含了各种schema约束,下面我给出的applicationContext.xml文件包含的schema约束应该是最全面的。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
</beans>
接着,就要使用Spring中的核心监听器(即ContextLoaderListener)来整合web项目了。咋整合呢?在web.xml文件中配置Spring中的核心监听器(即ContextLoaderListener),这样在服务器启动的时候,它就会加载Spring的配置文件了,并且还要手动配置让其加载类路径下的配置文件。
最后,还要记得在src目录下引入Log4j的配置文件(log4j.properties)哟!也就是日志记录文件,该文件内容如下:
### direct log messages to stdout ###
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.err
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
### direct messages to file mylog.log ###
log4j.appender.file=org.apache.log4j.FileAppender
log4j.appender.file.File=c\:mylog.log
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
### set log levels - for more verbose logging change 'info' to 'debug' ###
# error warn info debug trace
log4j.rootLogger= info, stdout
创建一个数据库,并在该数据库下新建一张客户表,这里笔者使用的数据库是MySQL。
create database s2sh_crm;
use s2sh_crm;
CREATE TABLE `cst_customer` (
`cust_id` bigint(32) NOT NULL AUTO_INCREMENT COMMENT '客户编号(主键)',
`cust_name` varchar(32) NOT NULL COMMENT '客户名称(公司名称)',
`cust_source` varchar(32) DEFAULT NULL COMMENT '客户信息来源',
`cust_industry` varchar(32) DEFAULT NULL COMMENT '客户所属行业',
`cust_level` varchar(32) DEFAULT NULL COMMENT '客户级别',
`cust_phone` varchar(64) DEFAULT NULL COMMENT '固定电话',
`cust_mobile` varchar(16) DEFAULT NULL COMMENT '移动电话',
PRIMARY KEY (`cust_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CRM系统中用到的所有页面可以点击我给的百度网盘链接行下载。
这里,除了要将CRM系统中用到的所有页面导入到我们的项目中之外,还记得将所有的htm静态页面改为jsp页面。咋改?不用我教吧!改完之后,发布我们的项目,试着访问一下项目的首页,看能不能出现下面的效果。
接着,在菜单页面(menu.jsp)中修改新增客户超链接的提交路径。
此时,重新发布咱们的项目到Tomcat服务器中,访问项目的首页之后,点击新增客户超链接,就能跳转到客户添加页面中。
现在咱要做的事情是在以上页面中填入客户的相关信息之后,一点保存按钮,就要将填写的客户信息保存到数据库表中,也就是说我们要完成CRM系统中保存客户的功能。尼玛!需求这个时候才出现!
首先,在com.meimeixia.ssh.domain包下创建一个Customer实体类。
package com.meimeixia.ssh.domain;
public class Customer {
private Long cust_id;
private String cust_name;
private String cust_source;
private String cust_industry;
private String cust_level;
private String cust_phone;
private String cust_mobile;
public Long getCust_id() {
return cust_id;
}
public void setCust_id(Long cust_id) {
this.cust_id = cust_id;
}
public String getCust_name() {
return cust_name;
}
public void setCust_name(String cust_name) {
this.cust_name = cust_name;
}
public String getCust_source() {
return cust_source;
}
public void setCust_source(String cust_source) {
this.cust_source = cust_source;
}
public String getCust_industry() {
return cust_industry;
}
public void setCust_industry(String cust_industry) {
this.cust_industry = cust_industry;
}
public String getCust_level() {
return cust_level;
}
public void setCust_level(String cust_level) {
this.cust_level = cust_level;
}
public String getCust_phone() {
return cust_phone;
}
public void setCust_phone(String cust_phone) {
this.cust_phone = cust_phone;
}
public String getCust_mobile() {
return cust_mobile;
}
public void setCust_mobile(String cust_mobile) {
this.cust_mobile = cust_mobile;
}
}
然后,再在该包下创建一个与以上实体类相对应的映射配置文件,即Customer.hbm.xml。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<!-- 建立类与表的映射 -->
<class name="com.meimeixia.ssh.domain.Customer" table="cst_customer">
<!-- 建立类中的属性与表中的主键相对应 -->
<id name="cust_id" column="cust_id">
<!-- 主键的生成策略,现在使用的是本地生成策略 -->
<generator class="native" />
</id>
<!-- 建立类中的普通属性和表中的字段相对应 -->
<property name="cust_name" column="cust_name" />
<property name="cust_source" column="cust_source" />
<property name="cust_industry" column="cust_industry" />
<property name="cust_level" column="cust_level" />
<property name="cust_phone" column="cust_phone" />
<property name="cust_mobile" column="cust_mobile" />
</class>
</hibernate-mapping>
最后,记得在Hibernate的核心配置文件引入以上映射配置文件,千万不要忘记这一点哟!
为了完成CRM系统中保存客户的功能,我们需要对客户添加页面(即add.jsp页面)进行如下修改。
Spring框架整合Struts2框架,共有两种方式,它们分别是:
下面,我会分别介绍这两种整合方式。
首先,在com.meimeixia.ssh.web.action包下创建一个CustomerAction。
package com.meimeixia.ssh.web.action;
import com.meimeixia.ssh.domain.Customer;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
/** * 客户管理的Action的类 * @author liayun * */
public class CustomerAction extends ActionSupport implements ModelDriven<Customer> {
//模型驱动使用的对象
private Customer customer = new Customer();
@Override
public Customer getModel() {
return customer;
}
/** * 保存客户的save方法 */
public String save() {
System.out.println("CustomerAction中的save方法执行了......");
return NONE;
}
}
然后,在Struts2配置文件中(即struts.xml)对以上CustomerAction进行配置。
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<!-- 配置Strust2的一些常量 -->
<constant name="struts.action.extension" value="action" />
<!-- 配置CustomerAction -->
<package name="s2sh" extends="struts-default" namespace="/">
<action name="customer_*" class="com.meimeixia.ssh.web.action.CustomerAction" method="{1}">
</action>
</package>
</struts>
接着,咱就需要在CustomerAction中调用service层中的服务了。哎呀!service层中的接口和实现类咱也没有写啊!所以,接下来,我们还要编写service层中的接口和实现类。
package com.meimeixia.ssh.service;
import com.meimeixia.ssh.domain.Customer;
/** * 客户管理的业务层的接口 * @author liayun * */
public interface CustomerService {
void save(Customer customer);
}
package com.meimeixia.ssh.service.impl;
import com.meimeixia.ssh.domain.Customer;
import com.meimeixia.ssh.service.CustomerService;
/** * 客户管理的业务层的实现类 * * @author liayun * */
public class CustomerServiceImpl implements CustomerService {
@Override
public void save(Customer customer) {
System.out.println("CustomerServiceImpl类中的save方法执行了......");
}
}
顺手,将以上实现类交给Spring来管理。
好了,现在我们就要来解决在CustomerAction中调用service层服务的问题了。这也得分两种情况来讨论:
第二种情况:如果在web层中使用了Struts2,那么这时可以进行Spring和Struts2这两个框架的整合。咋整合呢?这是一个问题。
首先,得引入struts2-spring-plugin-2.3.24.jar这个插件包。
在这个插件包下,有一个struts-plugin.xml文件,在该文件中有如下一个配置:
这说明,在这个struts-plugin.xml文件中,开启了一个struts.objectFactory的常量,在Struts2中只要开启了这个常量,那么就会引发下面的一些常量生效,尤其是struts.objectFactory.spring.autoWire这个常量,它可以让Action按照名称来自动注入Service。
以上便是Spring整合Struts2的第一种方式。
首先,还是要引入struts2-spring-plugin-2.3.24.jar这个插件包。然后,将CustomerAction交给Spring来管理。
然后,在Struts2配置文件中(即struts.xml)对CustomerAction进行配置。
以上便是Spring整合Struts2的第二种方式,在实际开发中,会推荐使用这种方式。为什么会推荐使用这种方式呢?这时因为:第一,管理方便,第二,它可以很容易地用AOP对咱们的Action进行增强,因为Action现在是交给Spring来管理了。
现在,咱就需要在 service层中调用dao层中的服务了。哎呀!dao层中的接口和实现类咱也没有写啊!所以,接下来,我们还要编写dao层中的接口和实现类。
package com.meimeixia.ssh.dao;
import com.meimeixia.ssh.domain.Customer;
/** * 客户管理的Dao层的接口 * @author liayun * */
public interface CustomerDao {
void save(Customer customer);
}
package com.meimeixia.ssh.dao.impl;
import com.meimeixia.ssh.dao.CustomerDao;
import com.meimeixia.ssh.domain.Customer;
/** * 客户管理的Dao层的实现类 * @author liayun * */
public class CustomerDaoImpl implements CustomerDao {
@Override
public void save(Customer customer) {
System.out.println("CustomerDaoImpl类中的save方法执行了......");
}
}
顺手,将以上实现类交给Spring来管理。
然后,改写CustomerServiceImpl实现类,定义一个CustomerDao类型的属性,并生成set方法。
package com.meimeixia.ssh.service.impl;
import com.meimeixia.ssh.dao.CustomerDao;
import com.meimeixia.ssh.domain.Customer;
import com.meimeixia.ssh.service.CustomerService;
/** * 客户管理的业务层的实现类 * * @author liayun * */
//@Transactional //在业务层使用注解
public class CustomerServiceImpl implements CustomerService {
// 注入Dao
private CustomerDao customerDao;
public void setCustomerDao(CustomerDao customerDao) {
this.customerDao = customerDao;
}
@Override
public void save(Customer customer) {
System.out.println("CustomerServiceImpl类中的save方法执行了......");
customerDao.save(customer);
}
}
接着,在Spring的配置文件中id为customerService的bean标签里面使用property标签注入以上customerDao属性。
这时,你可以做一个测试,发布咱们的项目到Tomcat服务器中,访问项目的首页之后,点击新增客户超链接,在跳转到客户添加页面后,直接点击保存按钮,那么你就会看到Eclipse控制台打印了如下信息,这就说明程序并没有任何问题。
Spring框架整合Hibernate框架,也被称为是零障碍整合。Spring整合Hibernate时,要在Spring的配置文件中引入Hibernate的配置的信息,也就是说Spring需要加载Hibernate配置文件。这是为啥子呢?一旦Spring加载到了Hibernate配置文件,那么它就会通过LocalSessionFactoryBean这个类来帮我们创建SessionFactory对象。
在Spring和Hibernate整合的过程中,Spring提供了一个Hibernate的模板类(即HibernateTemplate类),它可以用来简化Hibernate部分的开发,它有点类似于Spring的JDBC模板类。所以,咱可以让dao层中的实现类(即CustomerDaoImpl类)去继承这个HibernateDaoSupport类,继承它有什么好处呢?如果你查看该类的源代码,那么你就能发现它里面提供了一个setHibernateTemplate方法。也就是说只要让你的实现类去继承了它,那么你就可以直接CustomerDaoImpl实现类中去注入模板了。
但这样做,还是有点不好,你还得在Spring配置文件中去配置Hibernate的模板类。其实CustomerDaoImpl实现类继承了HibernateDaoSupport类之后,还可以让咱们的代码更简化,查看HibernateDaoSupport类的源代码,在它的源代码里面,还提供了一个setSessionFactory(SessionFactory sessionFactory)方法,如果你给它注入了一个SessionFactory对象的话,它便会使用这个SessionFactory对象帮你创建一个Hibernate模板类的对象。
如此一来,CustomerDaoImpl实现类的代码就应该修改成下面这个样子。
现在咱只需要在CustomerDaoImpl实现类里面注入一个SessionFactory,它里面就会有一个Hibernate模板类的对象了。即咱要在Spring配置文件中id为customerDao的bean标签里面使用property标签注入sessionFactory属性。
此时,便再也不需要在Spring配置文件中配置Hibernate的模板了。
这里,我们会使用Spring基于注解方式的声明式事务管理,因为写起来更加简单。
至此,SSH框架整合的第一种方式,算是讲完了,真不容易!为了证明这一点,你可以做一个测试,发布咱们的项目到Tomcat服务器中,访问项目的首页之后,点击新增客户超链接,这时会跳转到客户添加页面,填入客户的相关信息之后,点击保存按钮,那么你就会看到咱的客户表中添加了一条新的记录。
Spring整合Hibernate框架的时候,可以不用写Hibernate的核心配置文件。Hibernate的核心配置文件里面有哪些内容,就把这些内容交给Spring去管理。
首先,复制以上一个S2SH项目,将其重命名为S2SH02,然后再在其基础上讲解SSH框架整合开发的第二种方式。
查看之前编写的Hibernate核心配置文件,可知Hibernate核心配置文件里面包含了如下内容。
Spring整合Hibernate框架的时候,虽然可以不用写Hibernate的核心配置文件,但还是要把Hibernate核心配置文件中的基本信息配置和映射文件的引入放到Spring配置文件中进行配置。所以,这时Spring配置文件的内容就应修改为下面这个样子。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
<!-- 引入外部属性文件 -->
<context:property-placeholder location="classpath:jdbc.properties" />
<!-- 配置C3P0连接池 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="${jdbc.driverClass}" />
<property name="jdbcUrl" value="${jdbc.url}" />
<property name="user" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</bean>
<!-- Spring整合Hibernate~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- 引入Hibernate的配置信息。Spring通过加载Hibernate配置文件,帮我们生成SessionFactory -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<!-- 这时,没有Hibernate配置文件 -->
<!-- <property name="configLocation" value="classpath:hibernate.cfg.xml" /> -->
<!-- 自己得注入一个连接池 -->
<property name="dataSource" ref="dataSource" />
<!-- 配置Hibernate的相关属性 -->
<property name="hibernateProperties">
<!-- Properties类型的属性,我们要怎么注入呢? -->
<props>
<!-- 配置Hibernate的方言 -->
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<!-- 打印sql语句 -->
<prop key="hibernate.show_sql">true</prop>
<!-- 格式化sql语句 -->
<prop key="hibernate.format_sql">true</prop>
<!-- 自动创建表 -->
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
<!-- (引入映射文件)告诉Hibernate加载哪个映射文件 -->
<property name="mappingResources">
<!-- mappingResources是一个String...类型的属性,String的可变参数我们可以当成数组,那数组怎么注入啊? -->
<list>
<value>com/meimeixia/ssh/domain/Customer.hbm.xml</value>
</list>
</property>
</bean>
<!-- 配置CustomerAction~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<bean id="customerAction" class="com.meimeixia.ssh.web.action.CustomerAction" scope="prototype">
<property name="customerService" ref="customerService"></property>
</bean>
<!-- 配置CustomerService~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<bean id="customerService" class="com.meimeixia.ssh.service.impl.CustomerServiceImpl">
<property name="customerDao" ref="customerDao"></property>
</bean>
<!-- 配置CustomerDao~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<bean id="customerDao" class="com.meimeixia.ssh.dao.impl.CustomerDaoImpl">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<!-- 你原来得这样干: -->
<!-- HibernateTemplate里面也得需要注入SessionFactory,就跟我们原来JdbcTemplate需要注入连接池是一样的。 但是,别忘了,我们原来在dao层实现类上继承了一个东西就可以不用定义这个模板了。 <bean id="hibernateTemplate" class="org.springframework.orm.hibernate5.HibernateTemplate"> <property name="sessionFactory" ref="sessionFactory" /> </bean> -->
<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<!-- 它里面想要管理事务,还得获得连接,获得连接就需要SessionFactory -->
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<!-- 开启注解(式)事务 -->
<tx:annotation-driven transaction-manager="transactionManager" />
</beans>
在以上applicationContext.xml文件中,可以看到我们使用的是C3P0连接池,连接池对象中所使用到的配置信息(包括数据库驱动类的全名称、要连接的数据库、用户名以及密码等)都来自于src目录下的jdbc.properties属性文件当中,该文件的内容如下所示。
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql:///s2sh_crm
jdbc.username=root
jdbc.password=liayun
至此,SSH框架整合的第二种方式,咱也讲完了,还挺不容易的!为了证明这一点,我们可以做一个测试,发布咱们的项目到Tomcat服务器中,访问项目的首页,点击新增客户超链接,这时会跳转到客户添加页面,填入客户的相关信息之后,点击保存按钮,那么你就会看到咱的客户表中添加了一条新的记录。
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://liayun.blog.csdn.net/article/details/100577375
内容来源于网络,如有侵权,请联系作者删除!