JFinal传递map到JSP页面中

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

猜你喜欢

热点阅读