spring的modelandview 的ftl解析示例

ftl示例

public ModelAndView handleRequest(HttpServletRequest request,HttpServletResponse response) throws Exception {
	 	
	 	List list = testservice.listAllUser();
	 	Map map = new HashMap();
	 	map.put("create", true);
	 	map.put("list", list);
		return new ModelAndView("index","map",map);
}



我想在ftl中遍历这个map中的list。。求解

<#list ${map.list}? as user>
		${user.username}


这样报错了。。


以及配置项设置


      
          
          
        
          
          
          
          
    



你可能感兴趣的:(spring,ftl)