Struts 2 action variables not populated after interceptor's invocation.invoke()

和自甴很熟 提交于 2019-12-03 15:11:41

You've specified only your custom interceptor in your code and have excluded all the other Struts2 default interceptors. Try this instead:

<interceptors>
    <interceptor name="login" class="com.spiddan.LoginInterceptor" />
    <interceptor-stack name="defaultStackModified">  <!-- name doesn't override existing defaultStack-->
        <interceptor-ref name="defaultStack"/>       <!-- include the defaultStack this way--> 
        <interceptor-ref name="login"/>
    </interceptor-stack>
</interceptors>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!