1. 程式人生 > >HTTP Status 404 - There is no Action mapped for namespace [/] and action name [courseTypeAction_find

HTTP Status 404 - There is no Action mapped for namespace [/] and action name [courseTypeAction_find

HTTP Status 404 - There is no Action mapped for namespace [/] and action name [courseTypeAction_findAll] associated with context path [/crm].

原因:不同的struts2配置檔案中package name名重複

<struts>	
	<!-- 崗位私有配置 -->
	<package name="post" namespace="/" extends="common">	
		<action name="postAction_*" class="wang.crm.post.web.action.PostAction" method="{1}">
			
		</action>	
	</package>	
</struts>
struts>	
	<!-- 課程私有配置 -->
	<package name="post" namespace="/" extends="common">	
		<action name="courseTypeAction_*" class="wang.crm.coursetype.web.action.CourseTypeAction" method="{1}">
			<result name="findAll">/WEB-INF/coursetype/listCourse.jsp</result>
		</action>	
	</package>	
</struts>