struts2 模板主题

Struts2.0 默认提供了三种模板主题,如下:

  • simple          就是什么模板都不要
  • xhtml           默认的模板,带一些struts2提供的模块,主要是方便界面警告和错误消息处理以及页面验证
  • css_xhtml    如果你的页面用了css布局,又想用struts2的增强功能

 

修改这个参数,可以在struts.property文件或者struts.xml文件中进行

struts.properties文件

struts.ui.theme=simple
struts.ui.templateDir=template
struts.ui.templateSuffix=ftl 
 

struts.xml文件

<constant name="struts.ui.theme" value="simple" />
<constant name="struts.ui.templateDir" value="template" />
<constant name="struts.ui.templateSuffix" value="ftl" /> 

你可能感兴趣的:(UI,xml,XHTML,struts,css)