Spring 配置文件XML头部文件模板实例详解

干什么都三分钟热度,人生也会对你三分钟热度。人生的这碗汤的酸甜苦辣听别人说的再多,都不如自己亲自尝一尝,否则,你怎么知道人生是什么滋味呢?

普通spring配置文件模板:

<?xml version="1.0" encoding="UTF-8" ?>  
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
   xmlns="http://www.springframework.org/schema/beans" 
   xsi:schemaLocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">  

</beans>

添加注解后的格式:

<?xml version="1.0" encoding="UTF-8" ?>  
<beans xmlns="http://www.springframework.org/schema/beans" 
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
   xmlns:context="http://www.springframework.org/schema/context" 
   xsi:schemaLocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">  

</beans>

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

以上就是Spring 配置文件XML头部文件模板实例详解。向后看才能理解生活;但要生活好,则必须向前看。更多关于Spring 配置文件XML头部文件模板实例详解请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
JSP Spring配置文件中传值的实例详解

web.xml中如何设置配置文件的加载路径实例详解

spring的maven配置文件整理

JSP 从配置文件获取参数详解

一篇关于JSP配置文件web.xml加载顺序详解