struts 架构备注

1) struts.xml 放在src目录下面,src是java类源文件的文件夹。编译后,在WEB-INF\classes下面会生成一份struts.xml

2) web.xml 放置web-inf目录下,可以再web.xml目录下定义applicationContext.xml的位置
<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>
			classpath*:/applicationContext*.xml
		</param-value>
	</context-param>

3)struts.xml负责url入口,java方法,返回页面的映射。(src---->web-inf\classes)
  applicationContext.xml 实例化bean

你可能感兴趣的:(struts)