JFinal传递map到JSP页面中

  1. 封装map
Map responseInfoMap = new HashMap();
responseInfoMap.put("testInfo", testInfo);
  1. 设置属性
setAttr("commentListInfo", responseInfoMap);
renderJsp("/WEB-INF/jsp/helloworld/hello.jsp");
  1. JSP页面通过EL表达式获取
${commentListInfo.testInfo.title}

你可能感兴趣的:(JFinal传递map到JSP页面中)