struts2详细配置02

1、Struts2提供了一个Action接口,在Action接口中定义了一些常量和execute方法
我们可以使用该接口,这样开发更规范

2、struts2的常用配置参数
* struts.configuration.xml.reload
* struts.devMode
以上参数配置方式有两种:
* 在struts.properties文件中配置
* 在struts.xml配置文件中

<!-- 当struts.xml配置文件发生修改,会立刻加载,在生产环境下最好不要配置 -->
    <constant name="struts.configuration.xml.reload" value="true"/>
    <!-- 会提供更加友好的提示信息 -->
    <constant name="struts.devMode" value="true"/>

你可能感兴趣的:(struts2.0)