整合环境:

MyEclipseTomcat7.0,Hibernate3.6Struts2.2.1Spring3.0

所需匝包:

   在MyEclipse中,可以点击window—preferences—user libraries—new自定义用户的个人匝包,将各个匝包引入进来。

  Struts2.2.1下载解压后,将struts2.2.1/apps/struts2-blank-2.2.1/lib下的所有匝包引入到MyEclipse匝包如下:

Spring3.0+Struts2.2+Hibernate3.6整合与常见问题_第1张图片

  Hibernate3.6下载解压后,将hibernate3.jarlib/jpalib/required中的匝包引入进来,这里利用log4j日志,所以需要下载apache-log4j-1.2.16以及slf4j-1.6.1。匝包如下:

Spring3.0+Struts2.2+Hibernate3.6整合与常见问题_第2张图片

     (注意绘制红线的地方是包冲突的,需要在整合的过程中删除一个)

Spring3.0下载解压后,将Spring_3.0.5\spring-3.0.5.RELEASE\dist下的匝包引入,注意还需要下载commons-logging-1.0.4.jar当要使用aop的时候由于Spring3.0不再带有一些依赖包,所以需要下载apectj方面的包,不过这里面的包都可以在解压后的lib中找到,所需aop方面的匝包如下:

Spring3.0+Struts2.2+Hibernate3.6整合与常见问题_第3张图片

Spring3.0Hibernate3.6整合,在beanxml中需要设置dataSource,需要引用两个包,所以需要下载 commons-dbcp-1.4.jarcommons-pool-1.6.jar。可到http://commons.apache.org/下载。

Struts2.Spring3.0整合struts是主导,所有的实例对象全部要交给Spring来管理,还需要使用struts2-spring-plugin-2.2.1.jar这个可以在struts2.2.1/lib中导入。

    凡是以commons开头的包,都可以到Apache Commons的官网下载。

    先整合Spring+Hibernate,然后将struts添加上去。

二 具体整合

1 Spring3.0Hibernate3.6整合

Spring3.0Hibernate3.6整合,不再需要显示的定义一个Hibernate.cfg.xml文件了,将Hibernate.cfg.xml的配置全部配置在Spring的配置文件中。

Spring原始匝包:

Spring包中的dist文件夹下所有jaraspectj(如果要用AOP),commons-logging-1.0.4.jar

Hibernate原始包:hibernate的基本jar

数据连接包:数据库连接基本jar

整合所需包commons-dbcp-1.4.jarcommons-pool-1.6.jar

主要配置的dataSource(必须)sessionFactory(必须)transaction(可选)

基本数据源dataSource


   
   
   
   

   也可以利用properties文件配置:


  


   
   
   
   

       sessionFactory配置:



    
   
      
        com.bjsxt.model.User
         com.bjsxt.model.Manager
       

 还有一种方法,这仅仅用于annotation中,扫描注定包中的实体类
   
     
        com.bjsxt.model
      
   

   
      
         product.hbm.xml
      
   
  
   
     
      
org.hibernate.dialect.MySQLDialect
      true
      true
      update
    
   

   
     
        hibernate.dialect=org.hibernate.dialect.HSQLDialect
     
      hibernate.show_sql=true
     

HibernateTemplate的配置:


     

   使用HibernateTemplate的便利之处在于:HibernateTemplate将具体session的获取,事务的开始以及事务的提交与回滚都封装起来,中间留着自己的业务逻辑处理,采用了模板方法设计模式,在应用中的DAO中,将该hibernateTemplate注入进来setter,就可以直接使用其savedeleteupdatefindget等方法。

 2 Spring3.0+HibernateStruts整合

   将struts整合到SH中,依然需要Struts.xml配置文件,需要做的事情有,引入struts-spring-plugin.xml的包,修改web.xml配置文件。

   配置web.xml:





    org.springframework.web.context.ContextLoaderListener



    contextConfigLocation
    /WEB-INF/applicationContext-*.xml,classpath*:
applicationContext-*.xml


Struts Blank

struts2
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter


  struts2
  /*


index.html

OK,SSH整合OK啦!

三 整合注意事项及常见问题

   1,当出现NotDefClass的时候

   首先可能包冲突,将重名的包删除一个,下来就是出现缺失匝包,下载所需要的包,最后或者把匝包直接放入到WebRoot/WEB-INF/lib中。

   2,在springhibernate整合的过程的时候,必须要

   commons-dbcp-1.4.jarcommons-pool-1.6.jar,可http://commons.apache.org/中下载

   3struts的配置文件和以前的一样的,不需要更改,需要引入插件struts2-spring-plugin-2.2.1.jar

4strutsaction的产生

   struts读取配置文件的顺序如下:

   1).Struts-default.xml该文件在struts2-core-2.2.1.jar

   2).struts-plugin.xml这里引了插件,则就会去读struts2-spring-plugin-2.2.1.jar中的

   3).struts.xml  

   4).struts.properties  该文件在struts2-core-2.2.1.jarorg.apache.struts2包的default.properties

   5).web.xml     该文件在WebRoot/WEB-INF

   有一些整合会在struts.xml中配置

其实不用配置这个,因为这个配置已经在整合的插件中配置好了,即

struts2-spring-plugin-2.2.1.jar下的struts-plugin.xml

<bean type="com.opensymphony.xwork2.ObjectFactory" name="spring" class="org.apache.struts2.spring.StrutsSpringObjectFactory"/>

<constant name="struts.objectFactory" value="spring"/>

   由于struts-pluginstruts.xml先读取,所以就不必再次配置了。

 这里的objectFactory,目的就是将生成action的对象工厂转换为让spring来生成,该对象工厂为StrutsSpringObjectFactory工厂。

 由于struts.objectFactoryspringstruts2框架就会把action转发给spring来创建,装配,注入。但是actionbean创建完成之后,还是由struts容器来管理其生命周期,同时默认是prototype类型的。注意这里的action的创建其实真正的是由struts2-spring-plugin这个创建的,并不是由spring的。

strutsaction可以由plugin来产生,或者给予spring来产生

 plugin的产生,默认是prototype,且不需要在spring中进行actionbean配置,同时也不需要进行显示的注入,因为当action由插件创建后,它会根据类型到spring的容器中动态的注入相应的servicedao等对象的beanstruts.xml的配置还是照旧,但是这样就不能使用到springAOP功能了。

 spring的产生,在bean中或者annotation中,需要设置该actionbeanid,且scopeprototype

 对于struts.xml中的配置,需要设置class为与之对应的beanid

 如在applicationContext.xml文件中:

   然后在struts.xml中,指定class="user"即可。必须要将actionbean配置为scope=”prototype”或者singleton="false"

   5spring可以设置session的范围扩大到jsp页面上,在web.xml中配置一下,这个filter代表的作用就是让该session不用早,早的关闭,最后负责关闭该session,需要设置如下:


  openSessionInView
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter



  openSessionInView
  /*

   该filer一定要放到strutsfilter之前,并且它需要引用一个beansessionFactory在使用openSessionInView的时候,如果没有配置事务,它拦截到任何请求都认为是只读的。

  6,在整合的过程中出现中文乱码

第一种方式,在web.xml中配置,这里用的是spring


  encodingFilter
  
      org.springframework.web.filter.CharacterEncodingFilter
   
        encoding
        GBK
   


  encodingFilter
   /*

第二种方式struts.xml中配置

   常量的名都可以到struts2-core-2.2.1下找default.propterties