ssh整合主要可以分为3个步骤:搭建环境、设计架构、实现逻辑
以下是搭建环境的步骤
1、导入jar包
导入ssh基本jar包
2、导入ssh配置文件。
包括(struts.xml hibernate.cfg.xml `````.hbm.xml applicationContext.xml jdbc/properties)
3、整合strut与spring
1)web.xml
在web.xml中加上以下代码
1. <context-param>
2. <param-name>contextConfigLocation</param-name>
3. <param-value>classpath:applicationContext.xml</param-value>
4. </context-param>
5. <listener>
6. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
7. </listener>
8.
9.
10. <!-- 配置Spring的用于解决懒加载问题的过滤器 -->
11. <filter>
12. <filter-name>OpenSessionInViewFilter</filter-name>
13. <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
14. </filter>
15. <filter-mapping>
16. <filter-name>OpenSessionInViewFilter</filter-name>
17. <url-pattern>*.action</url-pattern>
18. </filter-mapping>
19.
20.
4、整合spring与hibernate
1)在applicationContext.xml中加上以下代码:
1. <context:component-scan base-package="com.njupt"></context:component-scan>
2.
3. <context:property-placeholder location="classpath:jdbc.properties" />
4.
5. <bean id="sessionFactory"
6. class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
7. <!-- 指定hibernate的配置文件位置 -->
8. <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
9. <!-- 配置c3p0数据库连接池 -->
10. <property name="dataSource">
11. <bean class="com.mchange.v2.c3p0.ComboPooledDataSource">
12. <!-- 数据连接信息 -->
13. <property name="jdbcUrl" value="${jdbcUrl}"></property>
14. <property name="driverClass" value="${driverClass}"></property>
15. <property name="user" value="${user}"></property>
16. <property name="password" value="${password}"></property>
17. <!-- 其他配置 -->
18. <!--初始化时获取三个连接,取值应在minPoolSize与maxPoolSize之间。Default: 3 -->
19. <property name="initialPoolSize" value="3"></property>
20. <!--连接池中保留的最小连接数。Default: 3 -->
21. <property name="minPoolSize" value="3"></property>
22. <!--连接池中保留的最大连接数。Default: 15 -->
23. <property name="maxPoolSize" value="5"></property>
24. <!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->
25. <property name="acquireIncrement" value="3"></property>
26. <!--
27. 控制数据源内加载的PreparedStatements数量。如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。Default:
28. 0
29. >
30. <property name="maxStatements" value="8"></property>
31. <!--
32. maxStatementsPerConnection定义了连接池内单个连接所拥有的最大缓存statements数。Default: 0
33. -->
34. <property name="maxStatementsPerConnection" value="5"></property>
35. <!--最大空闲时间,1800秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->
36. <property name="maxIdleTime" value="1800"></property>
37. </bean>
38. </property>
39. </bean>
40.
41.
42. <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
43. <property name="sessionFactory" ref="sessionFactory"></property>
44. </bean>
45. <tx:annotation-driven transaction-manager="txManager"/>
46.
47.
到这里ssh就整合完了,以下是一些方便使用的功能:
1)hibernate.cfg.xml中贴上
1. <property name="hbm2ddl.auto">update</property>
以上代码完成自动建表功能