tomcat启动时struts2容器做的事情

struts2扩展机制非常强,之所以能spring很容易的整合就是因为这个,有struts-plugin.xml的存在。。

struts-default.xml  struts-plugin.xml  struts.xml

这三个是覆盖的,也就是前面有的,后面的文件也有,就以后面的文件为主

 

 

tomcat启动的时候,struts容器做了什么事?

 1 加载了default.properties文件

 2 struts-default.xml

   struts-plugin.xml 

      其他框架以插件的形式加入到spring中来

      在项目中可以有很多个struts-plugin.xml文件

      在这个配置文件中可以做很多内容

           bean

           result-type

           package

           ...

           一配置struts2就加载进来 

   struts.xml

   include方式把其他程序员写的xml文件加载进来

你可能感兴趣的:(tomcat启动时struts2容器做的事情)