@RequestMapping("/admin/addEssay.do")
public ModelAndView addEssay(String identify){
List<Category> c = categoryService.findByIdentify(identify);
ModelAndView m = new ModelAndView();
m.setViewName("admin/xw/add");
m.addObject("cs", c);
return m;
}<% List<Category> c = (List<Category>)request.getAttribute("cs");%>
 <%=c.size() %>ie中0,
ff和google14,debug显示list大小为14,这是怎么回事,求大神
web.xml声明的是http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd
没有实现HandlerInterceptor
spring mvcmodelandview 无法取值 ie