xml配置的示例优先于Spring中的注释配置

时间:2014-02-17 10:25:46

标签: java spring spring-mvc annotations xml-configuration

在我读过的一本书中,XML配置的优先级高于注释配置。

但是没有任何例子。

你能举例说明吗?

2 个答案:

答案 0 :(得分:10)

这是一个简单的例子,展示了基于xml的Spring配置和基于Java的Spring配置的混合。示例中有5个文件:

Main.java
AppConfig.java
applicationContext.xml
HelloWorld.java
HelloUniverse.java

首先尝试使用applicationContext文件中注释掉的helloBean bean运行它,您会注意到helloBean bean是从AppConfig配置类实例化的。然后在applicationContext.xml文件中取消注释helloBean bean运行它,您会注意到xml定义的bean优先于AppConfig类中定义的bean。


Main.java

package my.test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Main {

   public static void main(String[] args) {
      ApplicationContext ctx = new AnnotationConfigApplicationContext( AppConfig.class );
      ctx.getBean("helloBean"); 
   }
}


AppConfig.java

package my.test;
import org.springframework.context.annotation.*;

@ImportResource({"my/test/applicationContext.xml"})
public class AppConfig {

   @Bean(name="helloBean")
   public Object hello() {
      return new HelloWorld();
   }
}


的applicationContext.xml

<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.xsd">

    <bean id="helloBean" class="my.test.HelloUniverse"/>

</beans>


 HelloUniverse.java

package my.test;

public class HelloUniverse {

   public HelloUniverse() {
      System.out.println("Hello Universe!!!");
   }
}


HelloWorld.java

package my.test;

public class HelloWorld {

   public HelloWorld() {
      System.out.println("Hello World!!!");
   }
}

答案 1 :(得分:-1)

当我们更喜欢XML文件的集中式声明式配置时,会使用基于XML的配置。当许多配置发生变化时。它可以让您清楚地了解这些配置是如何连接的。基于XML比基于注释更松散地解耦。