论坛首页 入门技术论坛

配置struts2.0.6+spring2.0.3+hibernane3备忘

浏览 36868 次
该帖已经被评为新手帖
作者 正文
   发表时间:2007-03-20  

花了2个小时终于配置好struts2.0.6+spring2.0.3+hibernane3,为自己庆祝一下,分享一下经验

一、struts2。

跟webwork配置基本一致,主要是struts2.properties和struts.xml 2个配置文件,我的struts2.properties如下配置:

struts2.properties
  1. struts.tag.altSyntax = true  
  2. struts.devMode = true  
  3.   
  4. ### These can be used to set the default HTTP and HTTPS  ports   
  5. struts.url.http.port = 80  
  6. #webwork.url.https.port = 443  
  7.   
  8. ### This can be used to set your locale and encoding scheme   
  9. struts.custom.i18n.resources=ApplicationResources  
  10. struts.locale=zh_CN  
  11. struts.i18n.encoding=utf-8   
  12.   
  13. # uses javax.servlet.context.tempdir by default   
  14. struts.multipart.parser=com.opensymphony.webwork.dispatcher.multipart.PellMultiPartRequest   
  15. #struts.multipart.saveDir=tmp  
  16. struts.multipart.saveDir=/tmp   
  17. struts.multipart.maxSize=512000000  
  18. struts.configuration.xml.reload=true  
  19.   
  20. struts.objectFactory = spring  

struts.xml 就是配置action了,由于设定了struts.objectFactory = spring,因此struts2会自动将action转为spring的bean,struts.xml可以直接配置我们的action路径,在action中我们只需要设置某个service文件的set方法即可调用事务管理bean。

struts.xml
  1. <!---->xml version="1.0" encoding="UTF-8" ?>  
  2. <!---->
  3.     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"   
  4.     "http://struts.apache.org/dtds/struts-2.0.dtd">  
  5.   
  6. <struts>  
  7.   
  8.     <include file="struts-default.xml" />  
  9.   
  10.     <package name="default" extends="struts-default">  
  11.         <default-interceptor-ref name="completeStack" />  
  12.   
  13.         <global-results>  
  14.             <result name="login" type="redirect">login!default.actionresult>  
  15.             <result name="unauthorized">unauthorized.jspresult>  
  16.         global-results>  
  17.            
  18.         <action name="login" class="com.baseframe.action.LoginAction">  
  19.             <result name="input">login.jspresult>  
  20.             <result name="success">main.jspresult>  
  21.             <result name="error">login.jspresult>  
  22.         action>  
  23.         <action name="logout" class="com.baseframe.action.LogoutAction">  
  24.             <result name="success">login.jspresult>  
  25.         action>  
  26.     package>  
  27.   
  28. struts>  

二、spring2。

添加dist下的3个spring包,因为不知道哪些包是必须的,把lib里的包都加了,去除jakarta-commons/commons-attributes-compiler.jar、j2ee/servlet-api.jar、j2ee/jsp-api.jar,然后建立配置文件,我分了三个文件:

主配置文件
  1. <!---->xml version="1.0" encoding="UTF-8"?>  
  2. <!---->
  3.     "http://www.springframework.org/dtd/spring-beans.dtd">  
  4. <beans>    
  5.     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">  
  6.         ...   
  7.     bean>  
  8.        
  9.     <bean id="hibernateProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">  
  10.         ...   
  11.     bean>  
  12.        
  13.     <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">  
  14.         <property name="dataSource" ref="dataSource"/>  
  15.         <property name="hibernateProperties">  
  16.             <ref bean="hibernateProperties"/>  
  17.         property>  
  18.         <property name="mappingResources">  
  19.             <list>  
  20.                 <value>com/baseframe/model/AppUser.hbm.xmlvalue>  
  21.                 <!---->  
  22.             list>  
  23.         property>  
  24.     bean>  
  25.        
  26.     <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">  
  27.         <property name="sessionFactory" ref="sessionFactory"/>  
  28.     bean>  
  29.        
  30.     <bean id="transactionInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">  
  31.         <property name="transactionManager" ref="transactionManager"/>  
  32.         <property name="transactionAttributes">  
  33.             <props>  
  34.                 <prop key="*">PROPAGATION_REQUIREDprop>  
  35.                 <prop key="amount*">PROPAGATION_REQUIRED,readOnlyprop>  
  36.                 <prop key="find*">PROPAGATION_REQUIRED,readOnlyprop>  
  37.             props>  
  38.         property>  
  39.     bean>    
  40.        
  41.     <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">  
  42.         <property name="beanNames">  
  43.             <value>*Servicevalue>  
  44.         property>  
  45.         <property name="interceptorNames">  
  46.             <list>  
  47.                 <value>transactionInterceptorvalue>  
  48.                 <!---->  
  49.             list>  
  50.         property>  
  51.     bean>  
  52.        
  53.     <bean class="org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor">  
  54.         <property name="transactionInterceptor" ref="transactionInterceptor"/>  
  55.     bean>  
  56. beans>  
 
dao配置文件
  1. <!---->xml version="1.0" encoding="UTF-8"?>  
  2.   
  3. <!---->
  4.     "http://www.springframework.org/dtd/spring-beans.dtd">  
  5.   
  6. <beans default-autowire="byName">  
  7.        
  8.     <bean id="userDao" class="com.baseframe.dao.impl.UserDaoImpl"/>  
  9.        
  10. beans>  

 

service/manager配置 
  1. <!---->xml version="1.0" encoding="UTF-8"?>  
  2.   
  3. <!---->
  4.     "http://www.springframework.org/dtd/spring-beans.dtd">  
  5.   
  6. <beans default-autowire="byName">  
  7.        
  8.     <bean id="userService" class="com.baseframe.service.impl.UserServiceImpl"/>  
  9.        
  10. beans>  

 

三、web.xml

有一点很重要,struts的filter需要放在最底,不然action接收的中文可能会乱码,不知道是不是这个原因,反正配置了就没有乱码了,加上org.springframework.orm.hibernate3.support.OpenSessionInViewFilter就不用考虑hibernate的lazy问题了:

xml 代码
  1. <filter>  
  2.       <filter-name>encodingFilterfilter-name>  
  3.       <filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>  
  4.       <init-param>  
  5.           <param-name>encodingparam-name>  
  6.           <param-value>UTF-8param-value>  
  7.       init-param>  
  8.   filter>  
  9.   <filter-mapping>  
  10.       <filter-name>encodingFilterfilter-name>  
  11.       <url-pattern>/*url-pattern>  
  12.   filter-mapping>  
  13.  <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>/*</url-pattern>
      </filter-mapping>
      
  14.   <filter>  
  15.        extremetable的filter   
  16.   filter>  
  17.   <filter-mapping>  
  18.        extremetable的filter mapping   
  19.   filter-mapping>  
  20.   
  21.   <filter>  
  22.       <filter-name>struts2filter-name>  
  23.       <filter-class>org.apache.struts2.dispatcher.FilterDispatcherfilter-class>  
  24.   filter>  
  25.   <filter-mapping>  
  26.       <filter-name>struts2filter-name>  
  27.       <url-pattern>/*url-pattern>  
  28.   filter-mapping>  

 

如有错误,欢迎指正

   发表时间:2007-03-20  
太好了 我正需要这个东东呢 您能写的更详细一点那就更好了 thank you!
0 请登录后投票
   发表时间:2007-03-20  
环境搭建基本上就是这样了,再详细等我研究下再说了
0 请登录后投票
   发表时间:2007-03-22  
非常感谢 xugq035 的介绍资料,我也想搞个 struts + spring + hibernate 相结合的东西出来, 不知道 这位朋友,能不能给我做一下指导啊,再这里 先谢过了啊

  如果,有机会的话,像你学习啊
0 请登录后投票
   发表时间:2007-03-23  
老兄,是不是要用tomcat5.5以上版本才支持struts2呀
0 请登录后投票
   发表时间:2007-03-24  
roundlight 写道
非常感谢 xugq035 的介绍资料,我也想搞个 struts + spring + hibernate 相结合的东西出来, 不知道 这位朋友,能不能给我做一下指导啊,再这里 先谢过了啊

  如果,有机会的话,像你学习啊


共同学习,struts2是个好东西,要摸透它需要时间,不过这段时间公司任务比较多,顾不上这个,有机会交流一下
0 请登录后投票
   发表时间:2007-03-24  
javachs 写道
老兄,是不是要用tomcat5.5以上版本才支持struts2呀


我用的是tomcat6.0,应该5.5也没问题的,struts有个j4的包,可以支持jdk1.4,不过我没试过
0 请登录后投票
   发表时间:2007-03-29  
struts.xml
 
  1. <!---->xml version="1.0" encoding="UTF-8" ?>  
  2. <!---->
  3.     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"   
  4.     "http://struts.apache.org/dtds/struts-2.0.dtd">  
  5.   
  6. <struts>  
  7.   
  8.     <include file="struts-default.xml" />  
  9.   
  10.     <package name="default" extends="struts-default">  
  11.         <default-interceptor-ref name="completeStack" />  
  12.   
  13.         <global-results>  
  14.             <result name="login" type="redirect">login!default.actionresult>  
  15.             <result name="unauthorized">unauthorized.jspresult>  
  16.         global-results>  
  17.            
  18.         <action name="login" class="com.baseframe.action.LoginAction">  
  19.             <result name="input">login.jspresult>  
  20.             <result name="success">main.jspresult>  
  21.             <result name="error">login.jspresult>  
  22.         action>  
  23.         <action name="logout" class="com.baseframe.action.LogoutAction">  
  24.             <result name="success">login.jspresult>  
  25.         action>  
  26.     package>  
  27.   
  28. struts>  

<action>的class是用的类如:com.baseframe.action.LoginAction,请问什么地方体现了struts+spring呢?
我觉得是不是应该用spring的bean来代替类呢?

</action>
0 请登录后投票
   发表时间:2007-03-29  

gcgan 写道:
struts.xml
 
  1. <!---->xml version="1.0" encoding="UTF-8" ?>  
  2. <!---->
  3.     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"   
  4.     "http://struts.apache.org/dtds/struts-2.0.dtd">  
  5.   
  6. <struts>  
  7.   
  8.     <include file="struts-default.xml" />  
  9.   
  10.     <package name="default" extends="struts-default">  
  11.         <default-interceptor-ref name="completeStack" />  
  12.   
  13.         <global-results>  
  14.             <result name="login" type="redirect">login!default.actionresult>  
  15.             <result name="unauthorized">unauthorized.jspresult>  
  16.         global-results>  
  17.            
  18.         <action name="login" class="com.baseframe.action.LoginAction">  
  19.             <result name="input">login.jspresult>  
  20.             <result name="success">main.jspresult>  
  21.             <result name="error">login.jspresult>  
  22.         action>  
  23.         <action name="logout" class="com.baseframe.action.LogoutAction">  
  24.             <result name="success">login.jspresult>  
  25.         action>  
  26.     package>  
  27.   
  28. struts>  

<action></action>的class是用的类如:com.baseframe.action.LoginAction,请问什么地方体现了struts+spring呢?
我觉得是不是应该用spring的bean来代替类呢?

spring的bean应该在action中调用,在LoginAction中应该包含类似如下的代码:

 private EmployeeService employeeService;
 public void setEmployeeService(EmployeeService employeeService) {
      this.employeeService = employeeService;
 }

这个EmployeeService才是spring的bean
只要你再struts.properties文件中设定了struts.objectFactory = spring,加入struts2-spring-plugin-2.0.6.jar就可以了

0 请登录后投票
   发表时间:2007-04-02  
这样搭配似乎美中不足。既然你选择了SPRING作为IOC容器,那么你的ACTION也应该被SPRING的IOC管理
更正

WEB.XML添加

	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>


Spring配置文件添加


       <bean id="LoginAction" class="com.baseframe.action.LoginAction"/>   
       <bean id="LogoutAction" class="com.baseframe.action.LogoutAction"/> 



最后struts.xml配置文件改下
         <action name="login" class="LoginAction">   
            <result name="input">login.jspresult>   
            <result name="success">main.jspresult>   
            <result name="error">login.jspresult>   
        action>   
        <action name="logout" class="LogoutAction">   
            <result name="success">login.jspresult>   
        action>   


这样容器管理就交给SPRING好了。
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics