欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用 myeclipse10整合S2SH框架 博客分类: web s2shstrutshibernatespring整合 

程序员文章站 2024-03-14 22:08:53
...

我使用的是myeclipse 10.0 整合的

一\添加spring支持

1.项目-->右键-->myeclipse-->选择Add spring Ca....

选择如图.外加 下面的spring 3.0 web libaries

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

下一步

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

完成:)

二\.添加hibernate 支持

项目-->右键-->myeclipse-->选择Add hibernate Ca....

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

还有下面的spring j2ee包和spring web包

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

下一步:

选择第二项:"

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

下一步:

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

下一步:这步我就不教怎么配置了.可以搜索去..很多

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

下一步:

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

下一步:

点击keep...

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

三:添加 struts2支持:

1.项目-->右键-->myeclipse-->选择Add struts Ca....

使用 myeclipse10整合S2SH框架 
            
    
    博客分类: web s2shstrutshibernatespring整合 

下一步只选择第一个包就行.需要其他包的时候去myeclipse目录下搜索就行.就像一会需要的一个 struts2-spring-pluginXXX包一样.就可以到myeclipse目录下搜索

点击结束即可:

下面让struts2和spring整合起来:

加入 struts2-spring-pluginXX包.到myeclipse下搜索就能找到

在web.xml中filter 之前加入加入:

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

 

完成了

记得在struts.xml中加入

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

 

转:http://blog.csdn.net/joker_zhou/article/details/7487756