SSH 項目建立過程
1. 加入 Spring
1). 加入 jar 包
2). 配置 web.xml 文件
<context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
3). 加入 Spring 的配置文件. new一個spring 配置文件: applicationContext.xml (eclipse集成spring,
插件springsource-tool-suite-3.9.4.RELEASE-e4.8.0-updatesite.zip) 鏈接:https://pan.baidu.com/s/1nPBnX5i7JQyVbbsqFl56FQ 密碼:vlwa
2. 加入 Hibernate
1). 配置 Hibernate
①. 加入 jar 包
②. 在類路徑下加入 hibernate.cfg.xml 文件, 在其中配置 hibernate 的基本屬性
<?xml version=‘1.0‘ encoding=‘utf-8‘?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configurationView Code> <session-factory> <!-- 配置 hibernate 基本屬性 --> <!-- 1. 數據源需配置到 IOC 容器中, 所以在此處不需要配置數據源 --> <!-- 2. 關聯的 .hbm.xml 也在 IOC 容器配置 SessionFactory 實例時進行配置 --> <!-- 3. 配置 Hibernate 的基本屬性: 方言, SQL 顯示及格式, 生成數據表的策略以及二級緩存 --> <!-- JDBC connection pool (use the built-in) --> <property name="connection.pool_size">1</property> <!-- SQL dialect --> <property name=" ">org.hibernate.dialect.MySQL5InnoDBDialect</property> <!-- Echo all executed SQL to stdout --> <property name="show_sql">true</property> <property name="hibernate.format_sql">true</property> <!-- Drop and re-create the database schema on startup --> <property name="hbm2ddl.auto">update</property> <mapping class="com.test.entitys.Department"/> <mapping class="com.test.entitys.Employee"/> </session-factory> </hibernate-configuration>
③. 使用註解配置持久化類 例如:需要進行多對一關聯, 另行配置
package com.test.entitys; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class Department { private Integer id; private String departmentName; @Id @GeneratedValue public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getDepartmentName() { return departmentName; } public void setDepartmentName(String departmentName) { this.departmentName = departmentName; } }View Code
3. 和 Spring 進行整合
1) 加入 c3p0 和 MySQL 的驅動
2) 配置 Spring 的配置文件 applicationContext.xml
3) 配置mysql驅動等, 新建 db.properties 文件,(在數據庫中創建對應的數據庫) 內容如:
jdbc.user=root
jdbc.password=root
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.jdbcUrl=jdbc:mysql:///ssh
jdbc.initialPoolSize=5
jdbc.maxPoolSize=10
4) 配置 c3p0 數據源
<!-- 導入資源文件 --> <context:property-placeholder location="classpath:db.properties"/> <!-- 配置 c3p0 數據源 --> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="user" value="${jdbc.user}"></property> <property name="password" value="${jdbc.password}"></property> <property name="driverClass" value="${jdbc.driverClass}"></property> <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property> <property name="initialPoolSize" value="${jdbc.initialPoolSize}"></property> <property name="maxPoolSize" value="${jdbc.maxPoolSize}"></property> </bean>
5) 配置 SessionFactory
<!-- 配置 Hibernate 的 SessionFactory 實例 : 通過Spring 提供的 LocalSessionFactoryBean 進行配置 --> <bean id="sessionFactroy" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> <!-- 配置數據源屬性 --> <property name="dataSource" ref="dataSource"></property> <!-- 配置 hibernate 配置文件的位置及名稱 --> <property name="configLocation" value="classpath:hibernate.cfg.xml"></property> </bean>
6) 到現在,啟動項目, 會看到生成對應的數據表
4. 配置 Spring 的聲明式事物
1)配置 hibernate 事物管理器
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactroy"></property> </bean>
2) 配置事物屬性
<tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="get*" read-only="true"/> <tx:method name="*"/> </tx:attributes> </tx:advice>
3) 配置事物切點(事物作用在那些類的那些方法上), 並把事物屬性和事物切入點關聯起來
<aop:config> <aop:pointcut expression="execution(* com.service.*.*(..))" id="txPointcut"/> <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/> </aop:config>
5. 加入 Struts2
1). 加入 jar 包: 若有重復的 jar 包, 則需要刪除版本較低的
2). 在 web.xml 文件中配置 Struts2 的 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). 加入 Struts2 的配置文件 當配置了下面 6-2 後, action類就可以直接使用 IOC 中的id
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <constant name="struts.devMode" value="true" /> <!-- 實時編譯 --> <constant name="struts.i18n.encoding" value="GBK" /> <!-- 解決中文亂碼問題 --> <constant name="struts.multipart.maxSize" value="10000000000" /> <package name="default" namespace="/" extends="struts-default"> <action name="emp_*" class="employeeAction" method="{1}"> <result name="list"> /WEB-INF/views/emp_list.jsp </result> </action> </package> </struts>View Code
6. 整合 Spring
1) 加入 Struts2 的 Spring 插件的 jar 包 struts2-spring-plugin-2.3.15.3.jar
2) 在 Spring 的配置文件中正常配置 Action, 註意 Action 的 scope 為 prototype(非單例)
<?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.xsd"> <bean id="employeeAction" class="com.actions.EmployeeAction" scope="prototype"> </bean> </beans>View Code
3) 在 Struts2 的配置文件中配置 Action 時, class 屬性指向該 Action 在 IOC 中的 id
4. 完成功能.
1). 查詢數據庫信息
(1) 新建dao, dao使用 IOC 容器管理
解決:
①. 打開懶加載: 不推薦使用
②. 獲取 Employee 時使用 迫切左外連接同時初始化其關聯的 Department 對象.
③. 使用 OpenSessionInViewFilter: 後面再提.
2). 刪除員工信息:
①. 正常刪除, 返回值需要是 redirect 類型, 而且重定向到 emp-list
②. 確定要刪除嗎? 的提示使用 jQuery 完成
③. Ajax 的使用參見 struts-2.3.15.3-all/struts-2.3.15.3/docs/WW/docs/ajax.html
3). 添加員工:
①. 顯示表單頁面: 需要先查詢所有的部門信息
②. 使用 Struts2 的 ModelDriven 和 Preparable 攔截器
③. 時間是一個字符串, 需要轉為一個 Date 類型的對象
SSH 項目建立過程