1.添加Struts配置
2.添加数据库连接
3.添加Spring配置
4.添加Hibernate配置
5.web.Xml的截图
按图片完成步骤后在web.xml中添加下面配置文件
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/application*.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>