摘要: 场景: 在实现struts2的注解方式的拦截器后,发现前台form submit到后台的数据无法被action中的类接收。原因: action默认的拦截器是defaultStack,当我们实现自己拦截器后会覆盖原来的拦截器。解决: 加上默认的拦截器 1 @Action(value = "/loginin", results = { 2 @Result(name = SUCCESS, location = "public/home.jsp", type = "dispatcher"), 3 @Result(name = "lo 阅读全文
posted @ 2014-04-07 11:48 Alcc 阅读(452) 评论(0) 推荐(0) 编辑