初生牛犊zjh
2015-09-17 18:10
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN" "http://struts.apache.org/dtds/struts-2.1.7.dtd"> <struts> <package name="default" namespace="/" extends="struts-default"> <default-action-ref name="error" ></default-action-ref> <action name="error" > <result>/error.jsp</result> </action> <action name="*_*" method="{2}" class="com.imooc.action.{1}Action"> <result>/result.jsp</result> <result name="update">/{2}.jsp</result> <result name="name">/{2}.jsp</result> </action> </package> </struts>
您好,还请详细描述问题,以便解析。
class里不要通配符就对了
其实这个是通配符“*_*”和默认action冲突的问题,修改通配符就可以的
出现同样问题,,跳转不过去,,,,?????
就是使用了两个通配符后会出现下面的错误
HTTP Status 500 - Unable to instantiate Action, com.imooc.action.dfAction, defined for 'df' in namespace '/'com.imooc.action.dfAction
class属性里不能写通配符啊,
为什么啊?我也出现这问题
Struts2入门
95061 学习 · 456 问题
相似问题