• Spring(十三)- Spring 配置类的注解


    一、Spring 配置类的注解

    @Component等注解替代了< bean>标签,但是像< import>、< context:componentScan> 等非< bean> 标签怎样去使用注解替代呢?

     
    <context:property-placeholder location="classpath:jdbc.properties"/>
     
    <context:component-scan base-package="com.itheima"/>
     
    <import resource="classpath:beans.xml"/>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    1. @Configuration

    定义一个配置类替代原有的xml配置文件,< bean>标签以外的标签,一般都是在配置类上使用注解完成的

    @Configuration注解标识的类为配置类,替代原有xml配置文件,该注解第一个作用是标识该类是一个配置类,第二个作用是具备@Component作用

    @Configuration
    public class ApplicationContextConfig {}
    
    • 1
    • 2

    2. @ComponentScan

    @ComponentScan 组件扫描配置,替代原有xml文件中的< context:component-scan base-package=“”/>

    @Configuration
    @ComponentScan(basePackages = {"com.itheima.service", "com.itheima.dao"})
    public class ApplicationContextConfig {}
    
    • 1
    • 2
    • 3

    base-package的配置方式:
    ⚫ 指定一个或多个包名:扫描指定包及其子包下使用注解的类
    ⚫ 不配置包名:扫描当前@componentScan注解配置类所在包及其子包下的类

    3. @PropertySource

    @PropertySource 注解用于加载外部properties资源配置,替代原有xml中的 < context:property-placeholder location=" "/> 配置

    @Configuration
    @ComponentScan
    @PropertySource({"classpath:jdbc.properties","classpath:xxx.properties"})
    public class ApplicationContextConfig {}
    
    • 1
    • 2
    • 3
    • 4

    4. @Import

    @Import 用于加载其他配置类,替代原有xml中的< import resource=“classpath:beans.xml”/>配置

    @Configuration
    @ComponentScan
    @PropertySource("classpath:jdbc.properties")
    @Import(OtherConfig.class)
    public class ApplicationContextConfig {}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    // 其他配置类,在主配置类中通过@Import被注入
    public class OtherConfig{}
    
    • 1
    • 2

    二、Spring 配置其他注解

    1. @Primary

    扩展:@Primary注解用于标注相同类型的Bean优先被使用权,@Primary 是Spring3.0引入的,与@Component
    和@Bean一起使用,标注该Bean的优先级更高,则再通过类型获取Bean或通过@Autowired根据类型进行注入时,会选用优先级更高的

    @Primary配合自定义bean使用

    @Repository("userDao")
    public class UserDaoImpl implements UserDao{}
    
    @Repository("userDao2")
    @Primary
    public class UserDaoImpl2 implements UserDao{}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    @Primary配合非自定义bean使用

    @Bean
    public UserDao userDao01() {
    	return new UserDaoImpl();
    }
    
    @Bean
    @Primary
    public UserDao userDao02() { 
    	return new UserDaoImpl2();
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    2. @Profile

    扩展:@Profile 注解的作用是进行环境切换

    <beans profile="test">
    
    • 1

    注解 @Profile 标注在类或方法上,标注当前产生的Bean从属于哪个环境,只有激活了当前环境,被标注的Bean才能被注册到Spring容器里,不指定环境的Bean,任何环境下都能注册到Spring容器里

    @Repository("userDao")
    @Profile("test")
    public class UserDaoImpl implements UserDao{}
    
    @Repository("userDao2")
    public class UserDaoImpl2 implements UserDao{}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    可以使用以下两种方式指定被激活的环境:
    ⚫ 使用命令行动态参数,虚拟机参数位置加载 -Dspring.profiles.active=test
    ⚫ 使用代码的方式设置环境变量 System.setProperty(“spring.profiles.active”, “test”);

  • 相关阅读:
    基于JAVA时间管理系统计算机毕业设计源码+系统+mysql数据库+lw文档+部署
    Java 24 Design Pattern 之 策略模式
    LeetCode【560】和为k的子数组
    nginx根据header分流
    [附源码]Java计算机毕业设计SSM高铁乘坐舒适性在线调查及评价系统
    【7-创建商城系统的子模块并将修改后的信息使用Git提交到Gitee上】
    JAVA反射机制详解
    java83-常用基础类object
    写一个flutter程序2
    【正点原子I.MX6U-MINI应用篇】3、Framebuffer应用编程,操作屏幕
  • 原文地址:https://blog.csdn.net/qq_36602071/article/details/127893728