struts拦截器,在struts2配置文件中加入自定义的拦截器就出错 20
这是我建的项目关键是struts2配置中出现的问题,我在struts.xml中不加入自己写的拦截器类MyInterceptor.java,一切运行正常,struts.xm...
这是我建的项目
关键是struts2配置中出现的问题,我在struts.xml中不加入自己写的拦截器类MyInterceptor.java,一切运行正常,struts.xml代码如下
<package name="myinterceptor" extends="struts-default">
<action name="test_interceptor" class="com.action.InterceptorTest">
<result name="success">/interceptorsuccess.jsp</result>
<result name="input">/Hello.jsp</result>
</action>
</package>
加了自己写的拦截器类MyInterceptor.java就出错了,什么网页都打不开,struts.xml代码如下
<package name="myinterceptor" extends="struts-default">
<interceptors>
<interceptor name="myInerceptor" class="com.interceptor.MyInterceptor1"/>
</interceptors>
<action name="test_interceptor" class="com.action.InterceptorTest">
<result name="success">/interceptorsuccess.jsp</result>
<result name="input">/Hello.jsp</result>
<interceptor-ref name="myInterceptor"/>
<interceptor-ref name="defaultStack"/>
</action>
</package>
到底哪里出错了,哪位大神来帮忙看看 展开
关键是struts2配置中出现的问题,我在struts.xml中不加入自己写的拦截器类MyInterceptor.java,一切运行正常,struts.xml代码如下
<package name="myinterceptor" extends="struts-default">
<action name="test_interceptor" class="com.action.InterceptorTest">
<result name="success">/interceptorsuccess.jsp</result>
<result name="input">/Hello.jsp</result>
</action>
</package>
加了自己写的拦截器类MyInterceptor.java就出错了,什么网页都打不开,struts.xml代码如下
<package name="myinterceptor" extends="struts-default">
<interceptors>
<interceptor name="myInerceptor" class="com.interceptor.MyInterceptor1"/>
</interceptors>
<action name="test_interceptor" class="com.action.InterceptorTest">
<result name="success">/interceptorsuccess.jsp</result>
<result name="input">/Hello.jsp</result>
<interceptor-ref name="myInterceptor"/>
<interceptor-ref name="defaultStack"/>
</action>
</package>
到底哪里出错了,哪位大神来帮忙看看 展开
展开全部
<package name="myinterceptor" extends="struts-default">
<interceptors>
<interceptor name="myInerceptor" class="com.interceptor.MyInterceptor1"/>
<interceptor-stack name="my">
<interceptor-ref name="myInterceptor"/>
<interceptor-ref name="defaultStack"/>
</interceptor-stack>
</interceptors>
<default-interceptor-ref name="my"/>
<action name="test_interceptor" class="com.action.InterceptorTest">
<result name="success">/interceptorsuccess.jsp</result>
<result name="input">/Hello.jsp</result>
</action>
</package>
//试试没坏处
<interceptors>
<interceptor name="myInerceptor" class="com.interceptor.MyInterceptor1"/>
<interceptor-stack name="my">
<interceptor-ref name="myInterceptor"/>
<interceptor-ref name="defaultStack"/>
</interceptor-stack>
</interceptors>
<default-interceptor-ref name="my"/>
<action name="test_interceptor" class="com.action.InterceptorTest">
<result name="success">/interceptorsuccess.jsp</result>
<result name="input">/Hello.jsp</result>
</action>
</package>
//试试没坏处
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询