xml配置文件基础

在开发过程中使用到web.xml或者application.xml两个比较常用的xml配置文件,在使用web.xml的时候一般是IDE工具就帮我们生成好了,所有只需要在里面添加自己需要使用的listener,filter等,而application.xml一般不是使用IDE工具生成,但是很多时候都是去别的地方COPY过来,然后直接在里面添加自己需要的bean等,从来就没关注过这些xml配置文件的组成,这里做过记录。
下面用application.xml为例子:




xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">




在spring3.0在web.xml当中的配置

Spring core configuration
org.springframework.web.context.ContextLoaderListener



contextConfigLocation

/WEB-INF/applicationContext.xml

你可能感兴趣的:(工作技术,web.xml,java)