java ssh整合的步驟
首先創建一個web工程就不用多說了,直接進入整合階段。
第一步:加入Spring
1)首先導入Spring的jar包,解壓spring-framework-4.0.1.RELEASE-dist壓縮包,裏面的lib文件夾全部導入
2)配置web.xml文件
<!-- 配置spring的監聽器 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext*.xml</param-value>
</context-param>
3)加入Spring的配置文件: applicationContext.xml
第二步:加入hibernate
1)加入hibernate jar包
解壓hibernate-release-4.2.4,文件夾\lib\required的全部文件
2)在類路徑下加入hibernate.cfg.xml文件,在其中配置hibernate的基本屬性
<hibernate-configuration>
<session-factory>
<!-- 配置hibernate基本屬性 -->
<property name="hibernate.hbm2ddl.auto">update</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.format_sql">true</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect </property>
</session-factory>
</hibernate-configuration>
3)建立持久化類,和其對應的.hbm.xml文件,生成對應的數據表
4)和spring進行整合
1.加入c3p0和MySQL的驅動
2.在applicationContext.xml文件裏面配置:數據源,SessionFactory,聲明式事務
3.啟動項目,會在數據庫看到對應的數據表
第三步:加入hibernate
1)加入jar包:解壓struts-2.3.35 裏面的apps\lib文件夾導入
2)在web.xml文件中配置Struts的Filter
<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>
3)加入Struts.xml文件(配置Action)
4) 整合spring :struts-2.3.35裏面的lib文件夾(重復的刪掉,版本低的刪掉)
5)在Spring的配置文件裏面配置Action時,Action的scope 的屬性為prototype
<bean id="employeeAction" class="com.atguigu.ssh.actions.EmployeeAction" scope="prototype">
<property name="employeeService" ref="employeeService"></property>
</bean>
6)在 Struts2 的配置文件Struts.xml中配置 Action 時, class 屬性指向該 Action 在 IOC(applicationContext.xml) 中的 id
java ssh整合的步驟