@Primary:在相同的bean中,优先选择用@Primary注解的bean(该注解写在各个bean上)
@Qualifier:在众多相同的bean中,@Qualifier指定需要注入的bean(该注解跟随在@Autowired后)
@Configuration标注在类上,相当于把该类作为spring的xml配置文件中的《beans》,作用为:配置spring容器(应用上下文)
以下两种方式等价
方式一:
ApplicationContext context = new AnnotationConfigApplicationContext(TestConfiguration.class);
方式二:
ApplicationContext context = new
ClassPathXmlApplicationContext(“spring-context.xml”);
@ApiOperation注解不是Spring的,它是swagger里的,
@ApiOperation是用来创建Api说明文档的
使用方式:
@ApiOperation(value = “接口说明”, httpMethod = “接口请求方式”, response =
“接口返回参数类型”, notes = “接口发布说明”;其他参数可参考源码;
@Component 通用组件
@Service 业务层协议
@Respository 持久层组件
@Controller 控制层组件
@Repository 为持久层组件注解。
@Autowired、@Inject 为指定Bean之间依赖关系的注解。
@Value 为注入Spring表达式值的注解。
@Scope(“prototype”) Bean的应用域注解
##延迟加载
@Lazy(true)
##生命周期
@PostConstruct 初始化
@PreDestroy 销毁
注意:这两个注解来自于javaee,需要导入annotation.jar文件
@Value("#(spring表达式)")