整合Struts2和spring3的时候,sturts2配置文件没问题,能找到action,但是页面空白,在action中也截获不到断点。
原因是,定义两个拦截器,还没实现内容,在拦截器中默认返回了null,实际上应该return invocation.invoke();放行访问。
拦截器现在代码
public String intercept(ActionInvocation invocation) throws Exception {
// TODO Auto-generated method stub
return invocation.invoke();
}
出错时:拦截器代码
public String intercept(ActionInvocation invocation) throws Exception {
// TODO Auto-generated method stub
return null;
}