对于现如今的主流宽假SSH在JavaEE企业级开发中占有很高的地位。今天正好一个项目要开始要整合SSH框架,先将一些注意事项与步骤记录如下:
1、首先,先对Spring与Hibernate经行整合。
(1)导入包可以一次性将所需要的jar全部导入。
(2)配置数据源
在配置文件中配置数据源datasource
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" >
<property name="driverClass" value="com.mysql.jdbc.Driver"/>
<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/hibernatedatabase?useUnicode=true&characterEncoding=UTF-8"/>
<property name="user" value="root"/>
<property name="password" value="admin"/>
<property name="initialPoolSize" value="1"/>
<property name="minPoolSize" value="1"/>
<property name="maxPoolSize" value="300"/>
<property name="maxIdleTime" value="60"/>
<property name="acquireIncrement" value="5"/>
<property name="idleConnectionTestPeriod" value="60"/>
</bean>
当然最好是将数据源的配置写入到一个jdbc。properties文件中
然后配置sessionfacroty
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mappingResources">
<list>
<value>com/ccsu/model/Department.hbm.xml</value>
<value>com/ccsu/model/Employee.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<value>
hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
hibernate.show_sql=true
hibernate.format_sql=true
</value>
</property>
</bean>
最后配置事物管理项。
这些配置好后,可以进行测试,一查看是否自己的Spring与Hibernate已经整合好了。
接下来就是与Struts2的整合了:
首先声明spring配置 在web.xml文件中
<!-- 制定spring的配置文件默认从web下寻找,我们可以通过spring配置的classpath 从类路径下寻找 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext*.xml</param-value>
</context-param>
<!-- 对spring容器进行实例化 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
在web.xml文件中声明struts
<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>
然后配置struts的配置文件struts.xml