mer*_*nan 19 configuration spring annotations xml-configuration
Spring框架可以使用基于XML的配置覆盖基于注释的配置吗?我需要更改已经通过注释定义的bean的依赖项,而我不是bean的作者.
mer*_*nan 17
我不知道弹簧可以混合配置.这是详细而且非常有用的例子.
Bean1是我们正在配置的实际bean.
package spring;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;
@Component
public class Bean1 {
private String naber;
@Autowired
@Qualifier("FireImpl1")
private Fire fire;
@PostConstruct
public void init() {
System.out.println("init");
getFire().fire();
}
@PreDestroy
public void destroy() {
System.out.println("destroy");
}
public void setNaber(String naber) {
this.naber = naber;
}
public String getNaber() {
return naber;
}
public void setFire(Fire fire) {
this.fire = fire;
}
public Fire getFire() {
return fire;
}
}
Run Code Online (Sandbox Code Playgroud)
Fire是依赖接口
package spring;
public interface Fire {
public void fire();
}
Run Code Online (Sandbox Code Playgroud)
和虚拟实现1
package spring;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;
@Component
@Qualifier("FireImpl1")
public class FireImpl1 implements Fire {
public void fire() {
System.out.println(getClass());
}
}
Run Code Online (Sandbox Code Playgroud)
和虚拟实现2
package spring;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Component;
@Component
@Qualifier("FireImpl2")
public class FireImpl2 implements Fire {
public void fire() {
System.out.println(getClass());
}
}
Run Code Online (Sandbox Code Playgroud)
config.xml中
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context" xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<context:component-scan base-package="spring" />
<bean id="bean1" class="spring.Bean1">
<property name="naber" value="nice" />
<property name="fire" ref="fireImpl2" />
</bean>
</beans>
Run Code Online (Sandbox Code Playgroud)
和主要班级
package spring;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Spring {
public static void main(String[] args) {
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("/spring/config.xml");
applicationContext.registerShutdownHook();
Bean1 bean = (Bean1) applicationContext.getBean("bean1");
System.out.println(bean.getNaber());
}
}
Run Code Online (Sandbox Code Playgroud)
这是输出
init
class spring.FireImpl2
nice
destroy
Run Code Online (Sandbox Code Playgroud)
虽然注释解析了对FireImpl1的依赖性,但xml配置覆盖了FireImpl2.非常好.
ska*_*man 15
这应该没问题.Spring bean上下文允许您重新定义bean,"later"定义覆盖"之前的".这应该适用于XML定义的bean以及注释定义的bean,即使它们是混合的.
例如,如果你有
@Configuration
public class MyAnnotatedConfig {
@Bean
public Object beanA() {
...
}
}
Run Code Online (Sandbox Code Playgroud)
<bean class="com.xyz.MyAnnotatedConfig"/>
<bean id="beanA" class="com.xyz.BeanA"/>
Run Code Online (Sandbox Code Playgroud)
在这种情况下,XML定义beanA应该优先.
| 归档时间: |
|
| 查看次数: |
13556 次 |
| 最近记录: |