Spring 配置XML文件头部文件格式

时间:2025-03-21 09:26:47

普通格式:

<?xml version="1.0" encoding="UTF-8" ?>   
<beans xmlns:xsi="http:///2001/XMLSchema-instance"  
     xmlns="/schema/beans"  
     xsi:schemaLocation="/schema/beans 
     /schema/beans/spring-beans-3.">   
  
</beans> 

 

添加注解后的格式:

<?xml version="1.0" encoding="UTF-8" ?>   
<beans xmlns="/schema/beans"  
     xmlns:xsi="http:///2001/XMLSchema-instance" 
     xmlns:context="/schema/context"  
     xsi:schemaLocation="/schema/beans 
     /schema/beans/spring-beans-3. 
     /schema/context 
     /schema/context/spring-context-3.">   
  
</beans>