使用@Configuration注解来代替Spring的bean配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用@Configuration注解来代替Spring的bean配置相关的知识,希望对你有一定的参考价值。

@Configuration 相当于beans、@bean相当于bean。

 

下面是一个典型的Spring配置文件(application-config.xml):

<beans>
  <bean id="orderService" class="com.acme.OrderService"/>
    <constructor-arg ref="orderRepository"/>
  </bean>
  <bean id="orderRepository" class="com.acme.OrderRepository"/>
    <constructor-arg ref="dataSource"/>
  </bean>
</beans>
然后你就可以像这样来使用是bean了:
ApplicationContext ctx = new ClassPathXmlApplicationContext("application-config.xml");
OrderService orderService = (OrderService) ctx.getBean("orderService");


现在Spring Java Configuration这个项目提供了一种通过java代码来装配bean的方案:

@Configuration
public class ApplicationConfig {

public @Bean OrderService orderService() {
return new OrderService(orderRepository());
}

public @Bean OrderRepository orderRepository() {
return new OrderRepository(dataSource());
}

public @Bean DataSource dataSource() {
// instantiate and return an new DataSource …
}
}
然后你就可以像这样来使用是bean了:
JavaConfigApplicationContext ctx = new JavaConfigApplicationContext(ApplicationConfig.class);
OrderService orderService = ctx.getBean(OrderService.class);





























以上是关于使用@Configuration注解来代替Spring的bean配置的主要内容,如果未能解决你的问题,请参考以下文章

Spring中用配置类代替配置xml文件

@configuration @Component @Repository @Controller

Spring零配置之@Configuration注解详解

Kotlin进阶学习3

IPV6 - 基础介绍

git新建关联克隆仓库指令