JFinal传递map到JSP页面中
2017-08-28 本文已影响32人
一一小知
- 封装map
Map<String, Object> responseInfoMap = new HashMap<String, Object>();
responseInfoMap.put("testInfo", testInfo);
- 设置属性
setAttr("commentListInfo", responseInfoMap);
renderJsp("/WEB-INF/jsp/helloworld/hello.jsp");
- JSP页面通过EL表达式获取
${commentListInfo.testInfo.title}