在MyEclipse中spring ,Struts和Hibernate怎么接和在一起用
2个回答
2011-11-22
展开全部
spring整合struts:
1,导入struts的相关jar包和spring必要的jar包,还有整合所需要的jar包struts-spring-pluginxxx.jar
2,修改web.xml
spring的配置部分为:
<context-param>
<param-name>contextCofigLocation</param-name>
<param-value>你的applicationContext.xml的相对路径</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoadListener</listener-class>
</listener>
2,修改spring配置文件
把struts中的Action配成spring中的bean,由spring托管
<bean id="ActionName" class="完整的类名">
......
</bean>
3,修改struts配置文件
<contant name="objectFactory" value="spring"/>
在<action>的class属性中引用bean中的id
<action name="RealActionName" class="ActionName">
.....
</action>
4,此外原来的Actin要继承ActionSupport类,方便开发
spring整合hibernate:
1,只需要在spring的主配置文件中配置sessionFactory和Datasource即可
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName">
<value>oracle.jdbc.driver.OracleDriver</value>
</property>
<property name="url">
<value>jdbc:oracle:thin:@localhost:1521:ERPDB</value>
</property>
<property name="username">
<value>gest</value>
</property>
<property name="password">
<value>ok</value>
</property>
</bean>
<!-- 注入SessionFactory,完成Hibernate与Spring的整合 -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.format_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>com/crm/entity/Xxxxxxx.hbm.xml</value>
........
</list>
</property>
</bean>
1,导入struts的相关jar包和spring必要的jar包,还有整合所需要的jar包struts-spring-pluginxxx.jar
2,修改web.xml
spring的配置部分为:
<context-param>
<param-name>contextCofigLocation</param-name>
<param-value>你的applicationContext.xml的相对路径</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoadListener</listener-class>
</listener>
2,修改spring配置文件
把struts中的Action配成spring中的bean,由spring托管
<bean id="ActionName" class="完整的类名">
......
</bean>
3,修改struts配置文件
<contant name="objectFactory" value="spring"/>
在<action>的class属性中引用bean中的id
<action name="RealActionName" class="ActionName">
.....
</action>
4,此外原来的Actin要继承ActionSupport类,方便开发
spring整合hibernate:
1,只需要在spring的主配置文件中配置sessionFactory和Datasource即可
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName">
<value>oracle.jdbc.driver.OracleDriver</value>
</property>
<property name="url">
<value>jdbc:oracle:thin:@localhost:1521:ERPDB</value>
</property>
<property name="username">
<value>gest</value>
</property>
<property name="password">
<value>ok</value>
</property>
</bean>
<!-- 注入SessionFactory,完成Hibernate与Spring的整合 -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.format_sql">true</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>com/crm/entity/Xxxxxxx.hbm.xml</value>
........
</list>
</property>
</bean>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询