1.struts2-spring整合时配置监听器
[在web.xml中]
<!-- 上下文载入器监听器,确保web服务器启动时,直接完成spring容器的初始化 --/>
[Ctrl + Shift + T 可以打开 Open type可以找到org.springframework.web.context.ContextLoaderListener]
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<!-- 通过上下文参数配置spring文件的位置 --/>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:beans.xml</param-value>
</context-param>
2.修改struts2的simple主题
[在struts.xml中]
在struts2-core包中,第一个包下面的default.properties中放着struts2的所有常量
<!-- 主题 --/>
<constant name="struts.ui.theme" value="simple"/>
<!-- 开发模式 --/>
<constant name="struts.devMode" value="true"/>