33.Spring有哪几种配置方式

Spring有哪几种配置方式

这里有三种重要的方法给Spring 容器提供配置元数据。

    1. XML配置文件。 spring诞生
      spring.xml ,基于xml配置太麻烦
    1. 基于注解的配置。 Spring2.5+
      spring.xml
      Bean的定义相关注解 - @Component - @Controller - @Service - @Repository
      Bean的注入相关注解 - @Autowire
    1. 基于java的配置。 JavaConfig Spring3.0+
      @Configuration @Bean …
      通过@Bean、@Component、getBean方式进行Bean的注册和发现
@Configuration 
public class DemoConfig {
    
	@Bean 
	p

你可能感兴趣的:(spring,java,后端,spring,boot,intellij-idea,java-ee,spring,cloud)