Spring的注解开发-Spring配置其它注解

Spring配置其它注解

@Primary

  • 拓展:@Primary注解用于标注相同类型的Bean优先被使用权,@Primary是Spring3.0引入的,与@Componen(及其衍生的三个注解)t和@Bean一起使用,标注该Bean的优先级更高,则在通过类型获取Bean或通过@Autowired根据类型注入时,会选用优先级更高的
    • Spring的注解开发-Spring配置其它注解_第1张图片

@Profile

  • 拓展:@Profile注解的作用等同于xml配置时学习的profile属性,是进行环境切换使用的,注解@Profile标注在类或方法上,标注当前产生的bean从属于哪个环境,只有激活了当前环境,被标注的Bean才会被注册到Spring容器里,不指定环境的Bean,任何环境下都能注册到Spring容器里
    • Spring的注解开发-Spring配置其它注解_第2张图片
  • 可以使用以下两种方式指定被激活的环境
    • 使用命令行动态参数:虚拟机动态参数加载,-Dspring.profile.active=test
    • 使用代码的方式设置环境变量 System.setProperty(“spring.profiles.active”,“test”)
      • Spring的注解开发-Spring配置其它注解_第3张图片

你可能感兴趣的:(Spring,5,spring,java,servlet)