Spring 配置文件XML頭部文件模板實例詳解
更新時間:2017年04月24日 08:40:10 投稿:lqh
這篇文章主要介紹了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>
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

