欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

FreeMarker中直接使用的对象

程序员文章站 2022-03-07 20:04:38
...

${Request["a"]}
${RequestParameters["a"]}
${Session ["a"]}
${ Application ["a"]}

 

在struts2中的使用方式:

${Application.myApplicationAttribute}
${Session.mySessionAttribute}
${Request.myRequestAttribute}
${Parameters.myParameter}

相关标签: freemarker