1. 須要的jar包列表
jar包名稱
|
所在位置
|
說明
|
antlr-2.7.6.jar
|
hibernate/lib/required
|
解析HQL
|
aspectjrt
|
spring/lib/aspectj
|
AOP
|
aspectjweaver
|
..
|
AOP
|
cglib-nodep-2.1_3.jar
|
spring/lib/cglib
|
代理,二進制加強
|
common-annotations.jar
|
spring/lib/j2ee
|
@Resource
|
commons-collections-3.1.jar
|
hibernate/lib/required
|
集合框架
|
commons-fileupload-1.2.1.jar
|
struts/lib
|
struts
|
commons-io-1.3.2
|
struts/lib
|
struts
|
commons-logging-1.1.1
|
單獨下載,刪除1.0.4(struts/lib)
|
struts
spring
|
dom4j-1.6.1.jar
|
hibernate/required
|
解析xml
|
ejb3-persistence
|
hibernate-annotation/lib
|
@Entity
|
freemarker-2.3.13
|
struts/lib
|
struts
|
hibernate3.jar
|
hibernate
|
|
hibernate-annotations
|
hibernate-annotation/
|
|
hibernate-common-annotations
|
hibernate-annotation/lib
|
|
javassist-3.9.0.GA.jar
|
hiberante/lib/required
|
hibernate
|
jta-1.1.jar
|
..
|
hibernate transaction
|
junit4.5
|
|
|
mysql-
|
|
|
ognl-2.6.11.jar
|
struts/lib
|
|
slf4j-api-1.5.8.jar
|
hibernate/lib/required
|
hibernate-log
|
slf4j-nop-1.5.8.jar
|
hibernate/lib/required
|
|
spring.jar
|
spring/dist
|
|
struts2-core-2.1.8.jar
|
struts/lib
|
|
xwork-2.1.2.jar
|
struts/lib
|
struts2
|
commons-dbcp
|
spring/lib/jarkata-commons
|
|
commons-pool.jar
|
..
|
|
struts2-spring-plugin-2.1.8.jar
|
struts/lib
|
|
2. BestPractice:
a) 將這些全部的jar包保存到一個位置,使用的時候直接copy
3. 步驟
a) 加入jar包
b) 首先整合Spring + Hibernate
i. 創建對應的package
1. dao / dao.impl / model / service / service.impl/ test
ii. 創建對應的接口與類框架
1. S2SH_01
iii. 創建spring的配置文件(建議本身保留一份常用的配置文件,之後用到的時候直接copy改)
iv. 創建數據庫
v. 加入Hibernate註解
1. 在實體類上加相應註解@Entity @Id等
2. 在beans配置文件配置對應的實體類,使之受管
vi. 寫dao service的實現
vii. 加入Spring註解
1. 在對應Service及DAO實現中加入@Component,讓spring對其初始化
2. 在Service上加入@Transactional或者使用xml方式(此處建議後者,由於更簡單)
3. 在DAO中注入sessionFactory
4. 在Service中注入DAO
5. 寫DAO與Service的實現
viii. 寫測試
c) 整合Struts2
i. 結合點:Struts2的Action由Spring產生
ii. 步驟:
1. 修改web.xml加入 struts的filter
2. 再加入spring的listener,這樣的話,webapp一旦啓動,spring容器就初始化了
3. 規劃struts的action和jsp展示
4. 加入struts.xml
a) 修改配置,由spring替代struts產生Action對象
5. 修改action配置
a) 把類名改成bean對象的名稱,這個時候就能夠使用首字母小寫了
b) @Scope(「prototype」)不要忘記
iii. struts的讀常量:
1. struts-default.xml
2. struts-plugin.xml
3. struts.xml
4. struts.properties
5. web.xml
iv. 中文問題:
1. Struts2.1.8已經修正,只須要改i18n.encoding = gbk
2. 使用spring的characterencoding
3. 須要嚴格注意filter的順序
4. 須要加到Struts2的filter前面
v. LazyInitializationException
1. OpenSessionInViewFilter
2. 須要嚴格順序問題
3. 須要加到struts2的filter前面