在MyEclipse中spring ,Struts和Hibernate怎么接和在一起用

2024-11-27 08:07:13
推荐回答(2个)
回答1:

spring整合struts:
1,导入struts的相关jar包和spring必要的jar包,还有整合所需要的jar包struts-spring-pluginxxx.jar
2,修改web.xml
spring的配置部分为:

contextCofigLocation
你的applicationContext.xml的相对路径


org.springframework.web.context.ContextLoadListener

2,修改spring配置文件
把struts中的Action配成spring中的bean,由spring托管

......

3,修改struts配置文件

的class属性中引用bean中的id

.....

4,此外原来的Actin要继承ActionSupport类,方便开发

spring整合hibernate:
1,只需要在spring的主配置文件中配置sessionFactory和Datasource即可


oracle.jdbc.driver.OracleDriver


jdbc:oracle:thin:@localhost:1521:ERPDB


gest


ok









true
true




com/crm/entity/Xxxxxxx.hbm.xml
........


回答2:

家里边jar包和配置文件,就可以了!