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>
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
相關文章
JSP內置對象:Request和Response的簡單介紹及使用
JSP內置對象:Request和Response的簡單介紹及使用,需要的朋友可以參考一下2013-02-02
jsp中include指令靜態(tài)導入和動態(tài)導入的區(qū)別詳解
這篇文章主要介紹了jsp中include指令靜態(tài)導入和動態(tài)導入的區(qū)別,通過示例和圖文講解可以更好的看出他們的區(qū)別,需要的朋友可以參考下2014-03-03

