1. 程式人生 > >struts.xml基礎配置

struts.xml基礎配置

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
"http://struts.apache.org/dtds/struts-2.1.7.dtd">

<struts>
<!-- 請求引數的編碼方式 -->  
    <constant name="struts.i18n.encoding" value="UTF-8"/>  
    <!-- 指定被struts2處理的請求字尾型別。多個用逗號隔開 -->  
    <constant name="struts.action.extension" value="action,do,qita"/>  
    <!-- 當struts.xml改動後,是否重新載入。預設值為false(生產環境下使用),開發階段最好開啟  -->  
    <constant name="struts.configuration.xml.reload" value="true"/>  
    <!-- 是否使用struts的開發模式。開發模式會有更多的除錯資訊。預設值為false(生產環境下使用),開發階段最好開啟  -->  
    <constant name="struts.devMode" value="false"/>  
    <!-- 設定瀏覽器是否快取靜態內容。預設值為true(生產環境下使用),開發階段最好關閉  -->  
    <constant name="struts.serve.static.browserCache" value="false" />  

<!-- 包含的其他配置檔案 -->
<include file="struts-method.xml"></include>
</struts>