Spring Boot注解使用指南
2021-05-13 03:30
标签:out @Value 动态 自动 oid test int 不能 tst @Configuration包含了@Component,所以被其注解的类自身也会被纳入到bean容器中,但是纳入的是经过cglib增强的子类(代理类)。 @Configuration标记的类必须符合下面的要求: 用于修改优先权的注解。当发现多个同样类型的Bean时,请优先使用其进行注入,常常和@Component结合使用。 和@Autowired结合使用,@Autowired是通过类型进行自动装配,这个注解则是通过名字进行装配。 和@Component一起使用,该bean会被惰性初始化。如果和@Configuration一起使用,那么该类所有被@Bean修饰的方法产生的bean都会被惰性初始化。 注入bean的属性值,支持Spring EL(#{} or ${})。 Spring Boot注解使用指南 标签:out @Value 动态 自动 oid test int 不能 tst 原文地址:https://www.cnblogs.com/memo20/p/13137596.html@Configuration
@Configuration
public class Test {
public static void main(String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
Map
@Primary
@Qualifier
@Lazy
@Value
下一篇:JavaScript基础