Struts2 Spring2.5 hibernate3.3整合开发环境搭建全过程
最近我们将要使用s2sh框架开发B2C模式电子商务系统,首先我们需要搭建三大框架所需要的开发环境。
Struts2需要引入的jar文件:
struts2-core-2.x.x.x.jar :Struts 2框架的核心类库
xwork-2.x.x.jar :XWork类库,Struts 2在其上构建
ognl-2.x.x.jar :对象图导航语言(Object Graph Navigation Language),struts2框架通过其读写对象的属性
freemarker-2.3.x.jar :Struts 2的UI标签的模板使用FreeMarker编写
commons-logging-1.1.x.jar :ASF出品的日志包,Struts 2框架使用这个日志包来支持Log4J和JDK 1.4+的日志记录。
commons-fileupload-1.2.1.jar 文件上传组件,2.1.6版本后必须加入此文件
struts2-json-plugin.jar struts2与json的插件
struts2-spring-plugin.jar struts2集成spring的插件
Hibernate3.5需要引入的jar文件:
hibernate核心安装包下的jar
hibernate3.jar
lib\required\*.jar
hibernate注解安装包下的jar
hibernate-annotations.jar
hibernate针对JPA的实现包
slf4j-log4j12-1.5.0.jar
log4j-1.2.15.jar
spring2.5需要引入的jar文件
spring.jar
aspectjrt.jar
aspectjweaver.jar
c3p0-0.9.1.2.jar
cglib-nodep-2.1_3.jar
common-annotations.jar
commons-logging.jar
log4j-1.2.15.jar
以上是其环境搭建大概所需要的包,如开发中还有其他需要可再行引入即可
其次我们需要配置web.xml文件以下为其配置内容 其中配置的主要内容有:
Spring的配置
Struts2的配置
使用spring解决struts2的中文乱码问题
使用spring解决hibernate因session关闭导致的延迟加载例外问题
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <!-- spring的配置 指定spring的配置文件,默认从web根目录寻找配置文件,我们可以通过spring提供的classpath:前缀指定从类路径下寻找 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:beans.xml</param-value> </context-param> <!-- 对Spring容器进行实例化 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- struts2的配置 --> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!--使用Spring解决struts2的中文乱码问题 --> <filter> <filter-name>encoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>encoding</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- 使用Spring解决hibernate因session关闭导致的 延迟加载例外问题 --> <filter> <filter-name>OpenSessionInViewFilter</filter-name> <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class> <init-param> <!-- 指定org.springframework.orm.hibernate3.LocalSessionFactoryBean在spring配置文件中的名称,默认值为sessionFactory.如果LocalSessionFactoryBean在spring中的名称不是sessionFactory,该参数一定要指定,否则会出现找不到sessionFactory的例外 --> <param-name>sessionFactoryBeanName</param-name> <param-value>sessionFactory</param-value> </init-param> </filter> <filter-mapping> <filter-name>OpenSessionInViewFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
然后我们需要配置spring的beans-xml文件,在该配置文件中我们需要配置C3P0数据源,
为了开发项目方便我们需要将配置文件与其他的类分开,所以我采用了分层结构,我将c3p0数据源放到了dhsfactory.xml文件下,只需要在beans-xml中使用import引入即可
dhsfactory.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <!-- 数据库连接池 --> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"> <property name="driverClass" value="${jdbc.driverClass}" /> <property name="jdbcUrl" value="${jdbc.url}" /> <property name="user" value="${jdbc.user}" /> <property name="password" value="${jdbc.password}" /> <!--初始化时获取的连接数,取值应在minPoolSize与maxPoolSize之间。Default: 3 --> <property name="initialPoolSize" value="1" /> <!--连接池中保留的最小连接数。--> <property name="minPoolSize" value="1" /> <!--连接池中保留的最大连接数。Default: 15 --> <property name="maxPoolSize" value="300" /> <!--最大空闲时间,60秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 --> <property name="maxIdleTime" value="60" /> <!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 --> <property name="acquireIncrement" value="5" /> <!--每60秒检查所有连接池中的空闲连接。Default: 0 --> <property name="idleConnectionTestPeriod" value="60" /> </bean> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <!-- dataSource配置 --> <property name="dataSource" ref="dataSource" /> <!-- 引入映射文件.hbm.xml --> <property name="mappingResources"> <list> <value>cn/dxl/domain/User.hbm.xml</value> </list> </property> <!-- hiberante属性的配置 --> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect">${hibernate.dialect}</prop> <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop> <prop key="hibernate.show_sql">${hibernate.show_sql}</prop> <prop key="hibernate.format_sql">${hibernate.format_sql}</prop> </props> </property> </bean> <!-- 分散配置信息 --> <bean id="propertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:cn/dxl/config/xml/jdbc.properties</value> </list> </property> </bean> </beans>
在上述配置文件中我采用了分散配置的设置所以需要引入jdbc.properties文件 文件内容如下
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect hibernate.hbm2ddl.auto=update hibernate.show_sql=true hibernate.format_sql=false jdbc.driverClass=com.mysql.jdbc.Driver jdbc.url=jdbc\:mysql\://localhost\:3306/s2sh?useUnicode\=true&characterEncoding\=UTF-8 jdbc.user=root jdbc.password=123
以下是struts的配置 注:struts.xml文件的名字不可改变
Struts.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN" "http://struts.apache.org/dtds/struts-2.1.7.dtd"> <struts> <!-- objectFactory spring --> <constant name="struts.objectFactory" value="spring" /> <!-- 国际化 --> <constant name="struts.custom.i18n.resources" value="dxl"/> <!-- 开发的模式 --> <constant name="struts.devMode" value="false"/> <!-- 默认的主题视图 --> <constant name="struts.ui.theme" value="xhtml"/> <!-- 包含其他的配置文件 以模块的方式 --> <include file="cn/dxl/config/xml/struts-user.xml"/> </struts>
以下是struts-user.xml的配置文件
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN" "http://struts.apache.org/dtds/struts-2.1.7.dtd"> <struts> <package name="dxl" extends="json-default" namespace="/csdn"> <global-results> <result name="input">/index.jsp</result> </global-results> <!—采用通配符-- > <action name="user_*" class="userAction" method="{1}"> <result name="insert" type="chain">user_list</result> <!-- 当执行index.jsp中的插入用户时用——》<result name="list">/WEB-INF/user/list.jsp</result>否则用下边的--> <result name="list">/WEB-INF/user/list.jsp</result> <result name="update" type="chain">user_list</result> <result name="delete" type="chain">user_list</result> <result name="edit">/WEB-INF/user/update.jsp</result> <result name="add">/WEB-INF/user/insert.jsp</result> </action> </package> </struts>
以下是hibernate映射文件的配置 (以user类为例)正向映射
User.java public class User implements Serializable { /** * @author DXL_xiaoli */ private static final long serialVersionUID = 1L; private Integer id; private String name; private String pass; private Date rdate; public User() { super(); // TODO Auto-generated constructor stub } public User(Integer id, String name, String pass) { super(); this.id = id; this.name = name; this.pass = pass; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPass() { return pass; } public void setPass(String pass) { this.pass = pass; } public Date getRdate() { return rdate; } public void setRdate(Date rdate) { this.rdate = rdate; } }
User.hbm.xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> <hibernate-mapping package="cn.dxl.domain"> <class name="User" catalog="s2sh" table="users"> <id name="id"> <generator class="native"></generator> </id> <property name="name" type="string" length="30" /> <property name="pass" type="string" length="12" /> <property name="rdate" type="date" /> </class> </hibernate-mapping>
以上是环境搭建的全过程,以后我将继续我的项目开发,希望能够与你分享成功的时刻……….never give up !!