最近在做一个小项目 使用struts+acegi;其中分页类是在struts action中将request传递给分页类,分页类中组织url与参数; 当没有acegi的时候,分页url是没有问题的,路径如:/listRole.do?method=readList&page=2 当加入aceig的时候,分页的request对象被修改了(可能),url路径变成:roleList.jsp?method=readList&page=3 struts配置文件如下<action path="/listRole"
   type="org.springframework.web.struts.DelegatingActionProxy"
   parameter="method" validate="false">
   <forward name="readList" path="/roleList.jsp"></forward>
</action> 可以看到,经过aceig后,url变成<forward>里的路径了;是被redirect了,还是acegi修改了我的request?还是其他原因?