随风伴云
磨练在生活的谷底
BlogJava
首页
新随笔
联系
聚合
管理
随笔-8 评论-8 文章-10 trackbacks-0
struts2.0 spring2.5 hibernate3.3整合
一、整合jar包
首先下载3个框架
struts2.0 下载地址
http://apache.freelamp.com/struts/binaries/struts-2.0.14-all.zip
spring2.5 下载地址
http://s3.amazonaws.com/dist.springframework.org/release/SPR/spring-framework-2.5.6.SEC01-with-dependencies.zip
hibernate3.3 下载地址
http://downloads.sourceforge.net/project/hibernate/hibernate3/3.3.2.GA/hibernate-distribution-3.3.2.GA-dist.zip
struts/lib下 找出以下5个jar文件 它们是使用struts2必须的jar文件
commons-logging-1.0.4.jar
freemarker-2.3.8.jar
ognl-2.6.11.jar
struts2-core-2.0.11.1.jar
xwork-2.0.4.jar
再找出 struts2-spring-plugin-2.0.14.jar 它是struts2与spring整合必须的jar文件
spring/dist下
spring.jar
spring/lib/aspectj下 在spring中使用aspectj 必须的jar包
aspectjrt.jar
aspectjweaver.jar
spring/lib/log4j
log4j-1.2.15.jar
hibernate/hibernate3.jar
hibernate/lib/required 下 所有jar文件 它们是使用hibernate必须的jar文件
注意其中有slf4j-api-1.5.8.jar 文件 它只是一个规范
我们需要下载它对log4j实现的jar文件
下载地址 http://www.slf4j.org/dist/slf4j-1.5.2.zip
找出其中有一个slf4j-log4j12-1.5.2.jar
以上一共18个jar文件
二、修改配置文件
web.xml
<?
xml version="1.0" encoding="UTF-8"
?>
<
web-app
version
="2.5"
xmlns
="http://java.sun.com/xml/ns/javaee"
xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation
="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
>
<
context-param
>
<
param-name
>
contextConfigLocation
</
param-name
>
<
param-value
>
classpath*:applicationContext-*.xml
</
param-value
>
</
context-param
>
<
filter
>
<
filter-name
>
struts2
</
filter-name
>
<
filter-class
>
org.apache.struts2.dispatcher.FilterDispatcher
</
filter-class
>
</
filter
>
<
filter-mapping
>
<
filter-name
>
struts2
</
filter-name
>
<
url-pattern
>
/*
</
url-pattern
>
</
filter-mapping
>
<
filter
>
<
filter-name
>
hibernateFilter
</
filter-name
>
<
filter-class
>
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
</
filter-class
>
</
filter
>
<
filter-mapping
>
<
filter-name
>
hibernateFilter
</
filter-name
>
<
url-pattern
>
*.action
</
url-pattern
>
</
filter-mapping
>
<
filter
>
<
filter-name
>
Spring character encoding filter
</
filter-name
>
<
filter-class
>
org.springframework.web.filter.CharacterEncodingFilter
</
filter-class
>
<
init-param
>
<
param-name
>
encoding
</
param-name
>
<
param-value
>
GBK
</
param-value
>
</
init-param
>
</
filter
>
<
filter-mapping
>
<
filter-name
>
Spring character encoding filter
</
filter-name
>
<
url-pattern
>
/*
</
url-pattern
>
</
filter-mapping
>
<
listener
>
<
listener-class
>
org.springframework.web.context.ContextLoaderListener
</
listener-class
>
</
listener
>
<
welcome-file-list
>
<
welcome-file
>
index.jsp
</
welcome-file
>
</
welcome-file-list
>
</
web-app
>
hibernate.cfg.xml
<?
xml version="1.0"
?>
<!
DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"
>
<
hibernate-configuration
>
<
session-factory
>
<
property
name
="format_sql"
>
false
</
property
>
<
property
name
="show_sql"
>
true
</
property
>
<
property
name
="connection.driver_class"
>
org.gjt.mm.mysql.Driver
</
property
>
<
property
name
="connection.url"
>
jdbc:mysql://localhost:3306/s2sh
</
property
>
<
property
name
="connection.username"
>
root
</
property
>
<
property
name
="connection.password"
>
password
</
property
>
<
property
name
="dialect"
>
org.hibernate.dialect.MySQLDialect
</
property
>
<
property
name
="hbm2ddl.auto"
>
none
</
property
>
<
mapping
resource
="com/illu/pojo/User.hbm.xml"
/>
</
session-factory
>
</
hibernate-configuration
>
applicationContext.xml
<?
xml version="1.0" encoding="UTF-8"
?>
<
beans
xmlns
="http://www.springframework.org/schema/beans"
xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop
="http://www.springframework.org/schema/aop"
xmlns:tx
="http://www.springframework.org/schema/tx"
xmlns:lang
="http://www.springframework.org/schema/lang"
xsi:schemaLocation
="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"
>
<
bean
id
="sessionFactory"
class
="org.springframework.orm.hibernate3.LocalSessionFactoryBean"
>
<
property
name
="configLocation"
>
<
value
>
classpath:hibernate.cfg.xml
</
value
>
</
property
>
</
bean
>
<
bean
id
="hibernateTemplate"
class
="org.springframework.orm.hibernate3.HibernateTemplate"
>
<
property
name
="sessionFactory"
>
<
ref
bean
="sessionFactory"
/>
</
property
>
</
bean
>
<!--
配置事务管理器
-->
<
bean
id
="transactionManager"
class
="org.springframework.orm.hibernate3.HibernateTransactionManager"
>
<
property
name
="sessionFactory"
>
<
ref
bean
="sessionFactory"
/>
</
property
>
</
bean
>
<!--
配置事物传播特性
-->
<
tx:advice
id
="txAdvice"
transaction-manager
="transactionManager"
>
<
tx:attributes
>
<
tx:method
name
="add*"
propagation
="REQUIRED"
/>
<
tx:method
name
="delete*"
propagation
="REQUIRED"
/>
<
tx:method
name
="modify*"
propagation
="REQUIRED"
/>
<
tx:method
name
="*"
read-only
="true"
/>
</
tx:attributes
>
</
tx:advice
>
<!--
哪些类的哪些方法参与事物, (* com.evan.crm.service.*.*(..))中几个通配符的含义:
第一个 * —— 通配 任意返回值类型
第二个 * —— 通配 包com.evan.crm.service下的任意class
第三个 * —— 通配 包com.evan.crm.service下的任意class的任意方法
第四个 .. —— 通配 方法可以有0个或多个参数
综上:包com.evan.crm.service下的任意class的具有任意返回值类型、任意数目参数和任意名称的方法
-->
<
aop:config
>
<
aop:pointcut
id
="allManagerMethod"
expression
="execution(* com.struts2.service.*.*(..))"
/>
<
aop:advisor
pointcut-ref
="allManagerMethod"
advice-ref
="txAdvice"
/>
</
aop:config
>
</
beans
>
每天进步一点点
posted on 2009-07-27 14:49
应越
阅读(1288)
评论(0)
编辑
收藏
所属分类:
struts2.0
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
<
2024年12月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
常用链接
我的随笔
我的文章
我的评论
我的参与
最新评论
留言簿
(2)
给我留言
查看公开留言
查看私人留言
随笔分类
(6)
拾荒(6)
随笔档案
(9)
2010年1月 (3)
2008年10月 (3)
2008年8月 (3)
文章分类
(9)
DWR学习(1)
Flex3 & ActionScript3(1)
jfreechart学习(1)
struts2.0(1)
struts学习(3)
面试(2)
文章档案
(9)
2009年7月 (1)
2009年5月 (1)
2009年1月 (1)
2008年8月 (5)
2008年7月 (1)
最新随笔
1. (转)eclipse 中删除文件的恢复
2. postgreSQL分页
3. java.lang.NoClassDefFoundError: javax/xml/stream/XMLStreamException 解决方案
4. struts2.0 spring2.5 hibernate3.3整合
5. Flex 练习中 遇到问题汇总
6. JFreeChart类库中文简要说明
7. Could not open ServletContext resource [/WEB-INF/action-servlet.xml]解决方案
8. getOutputStream() has already been called for this response 的解决方法
9. 使用myeclipse整合ssh 出现的问题
10. Struts 中使用dispatch Action 和validation验证时出现Servlet action is not available错误
最新评论
1. re: Could not open ServletContext resource [/WEB-INF/action-servlet.xml]解决方案
评论内容较长,点击标题查看
--tolerance
2. re: DWR学习(一) DWR入门helloworld[未登录]
评论内容较长,点击标题查看
--joy
3. re: 宇易通西安研发部面试题
你感觉这家公司如何呢?
--www
4. re: 很囧的Error creating form bean of class。。。
太牛了,我也是这个错误啊。谢谢啊!!!!!@宁夏
--Arion.ku
5. re: getOutputStream() has already been called for this response 的解决方法
评论内容较长,点击标题查看
--007
阅读排行榜
1. Could not open ServletContext resource [/WEB-INF/action-servlet.xml]解决方案(5898)
2. java.lang.NoClassDefFoundError: javax/xml/stream/XMLStreamException 解决方案(3815)
3. 很囧的Error creating form bean of class。。。(2016)
4. postgreSQL分页(1861)
5. getOutputStream() has already been called for this response 的解决方法(1041)