java

位置:IT落伍者 >> java >> 浏览文章

struts2中的一些constant


发布日期:2019年09月01日
 
struts2中的一些constant

struts中一些常量

<! 指定Web应用的默认编码集相当于调用HttpServletRequest的setCharacterEncoding方法 >

<constant name=strutsinencoding value=UTF />

该属性指定需要Struts 处理的请求后缀该属性的默认值是action即所有匹配*action的请求都由Struts 处理如果用户需要指定多个请求后缀则多个后缀之间以英文逗号()隔开

<constant name=strutsactionextension value=doactionso />

设置浏览器是否缓存静态内容默认值为true(生产环境下使用)开发阶段最好关闭

<constant name=strutsservestaticbrowserCache value=false />

当struts的配置文件修改后系统是否自动重新加载该文件默认值为false(生产环境下使用)开发阶段最好打开

<constant name=nfigurationxmlreload value=true />

开发模式下使用这样可以打印出更详细的错误信息

<constant name=strutsdevMode value=true />

默认的视图主题

<constant name=strutsuitheme value=simple />

该属性指定Struts 中的action由Spring容器创建

<constant name=strutsobjectFactory value=spring />

上一篇:反向控制和面向切面编程在Spring的应用

下一篇:Jakarta Struts学习之应用实践