Sturts2整合Spring一般步骤
程序员文章站
2022-07-15 20:42:10
...
步骤:
1.
导入Spring的包和struts2-spring-plugin-2.0.11.2.jar
2.
web.xml中加
3.
strust.xml中<struts>加
4.
strust.xml中
5.
applicationContext.xml中
其中<action> 中的class属性必须和<bean> 中的id属性一致,<bean> 中的class属性才是真正的类名。
1.
导入Spring的包和struts2-spring-plugin-2.0.11.2.jar
2.
web.xml中加
<listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener>
<context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/classes/applicationContext.xml</param-value> </context-param>
3.
strust.xml中<struts>加
<constant name="struts.objectFactory" value="org.apache.struts2.spring.StrutsSpringObjectFactory"/>
4.
strust.xml中
<action name="list" method="list" class="messageAction"> <result>/list.jsp</result> </action>
5.
applicationContext.xml中
<bean id="messageAction" class="action.MessageAction" scope="prototype"> <property name="messageService"> <ref bean="messageService" /> </property> </bean>
其中<action> 中的class属性必须和<bean> 中的id属性一致,<bean> 中的class属性才是真正的类名。
上一篇: Mysql学习总结第二篇
下一篇: Struts2拦截器的基本用法
推荐阅读
-
redis与spring整合使用的步骤实例教程
-
Spring整合Quartz动态定时任务步骤分析
-
Sturts2整合Spring一般步骤
-
Sturts2整合Spring一般步骤
-
Spring+SpringMVC+MyBatis+easyUI整合基础篇(三)搭建步骤
-
Spring+SpringMVC+MyBatis+easyUI整合基础篇(三)搭建步骤
-
Spring Boot整合腾讯云点播上传视频接口,后端详细代码及步骤!
-
Spring整合Mybatis详细步骤
-
整合Struts2与Spring的步骤 SpringServletStrutsWebBean
-
Spring Cloud Alibaba整合Sentinel的实现步骤