码迷,mamicode.com
首页 > 其他好文 > 详细

struts2不能进入action

时间:2015-08-04 15:45:13      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:struts2   ssh   

前言

分2种情况,
1.struts2
2.ssh

struts2


ssh

1.如果action由spring来管理,即action在ssh里是一个spring Bean。与action对应的spring Bean所在配置文件必须要在web.xml配置(即指明路径,这样spring容器就可以找到与action对应的spring Bean)。

示例:web.xml
<!--Spring的配置文件的路径-->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>
			classpath:springApplicationContext.xml, <!-- 1.spring的配置文件没有父子之分,即每个配置文件都是独立的。 (注:如果只有一个配置文件的话,那么默认是applicationcontext.xml)2.而struts2的配置文件:1)有一个主配置文件(默认是struts2.xml) 2)主配置文件里面包含其他的子配置文件。-->

            classpath:com/heilan/*/spring-*-*.xml,
         
        </param-value>
	</context-param>


出错原因
修改了配置文件路径,但是在web.xml里没有同步修改,导致不能进入action。


2.action配置文件,或者,与action对应的spring Bean所在配置文件,里面的各种名字写错了,不对应,仔细检查会发现十有八九是名字写错了。

示例:与action对应的spring Bean所在配置文件
<?xml version="1.0" encoding="UTF-8"?>
<!-- 在spring里配置Action:注入业务逻辑实例到Action的属性。 -->
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
	
	<!-- 在spring里面,每个Action都成了一个Bean -->
	<bean id="bookControllerBean" class="com.heilan.book.businessController.BookController" scope="prototype">
		<property name="bookBusiness" ref="bookBusinessBean"/>
	</bean>
	
</beans>


出错原因

com.heilan.book.businessController.BookController,大小写或包的路径写错了。

版权声明:本文为博主原创文章,未经博主允许不得转载。

struts2不能进入action

标签:struts2   ssh   

原文地址:http://blog.csdn.net/b_qxzb/article/details/47275933

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!