struts-default包是在struts-default.xml文件中定義的,,該文件可以在struts2-core.jar文件內(nèi)的根目錄下找到:<struts> ... <package name="struts-default" abstract="true"> <result-types> <result-type name="chain" class="com.opensymphony.xwork2.ActionChainResult"/> ... </result-types> <interceptors> <interceptor name="alias" class="com.opensymphony.xwork2.interceptor.AliasInterceptor"/> ... <interceptor-stack name="defaultStack"> <interceptor-ref name="exception"/> ... </interceptor-stack> </interceptors> <default-interceptor-ref name="defaultStack"/> <default-class-ref class="com.opensymphony.xwork2.ActionSupport" /> </package> </struts> struts-default包的內(nèi)容從struts-default.xml文件中可以看到,,struts-default包含了以下一些內(nèi)容:
|
|
來(lái)自: Erica_Shea > 《Struts2》