1. 程式人生 > >struts2框架常量配置的三種方式

struts2框架常量配置的三種方式

struts2框架常量配置的三種方式

1.在struts.xml中使用標籤:

這些常量可見struts2-core-x.x.x.jar核心包下的org.apache.struts2中的default.properties檔案

    <!-- 
		constant:配置常量
		
		i18n:國際化 解決post提交亂碼
	 -->
	<constant name="struts.i18n.encoding" value="UTF-8"></constant>
	
	<!-- 指定訪問action是的字尾名
		http://localhost:8080/struts2_day01/hello/HelloAction.do	
	 -->
	<constant name="struts.action.extension" value="do"></constant>
	
	<!-- 指定struts2是否以開發者模式執行
		1.熱載入主配置(不需要重啟即可生效)
		2.提供更多錯誤的資訊輸出,方便開發時的除錯
		
		但是在專案上線時需要關閉(因為消耗資源)
	 -->
	<constant name="struts.devMode" value="true"></constant>

 

2.在src下建立struts.properties檔案在裡面寫鍵值對  如: struts.i18n.encoding=UTF-8

3.web.xml中配置

<context-param>
 	<param-name>struts.i18n.encoding</param-name>
 	<param-value>UTF-8</param-value>
</context-param>

以上的1,2,3也是載入的順序 也就是說如果在3會覆蓋前面相同的常量 最終使用的是web.xml中的常量配置