Xml配置<action>
    <interceptor-ref name="token" />
    <interceptor-ref name="defaultStack" />
    <result name="invalid.token">/list.jsp</result>
<action>然后再Jsp页面的 增加页面 表单中加入<s:token />原来我访问action 查询出数据 然后到显示页面
现在直接到 <result name="invalid.token">配置的页面 
并且提示
The form has already been processed or no token was supplied, please try again. 这事怎么回事??是不是我哪里配错了

解决方案 »

  1.   

    action 啥都没干吗,成功地调转页面也不配
      

  2.   

    action 里面还要做什么???
      

  3.   

    成功的 
    <action>
        <interceptor-ref name="token" />
        <interceptor-ref name="defaultStack" />
        <result name="invalid.token">/list.jsp</result>
        <result name="list">/list.jsp</result>
        ... ...
    <action>成功的页面我配了  没贴出来而已·
     还有就是Action中需要做什么事啊?