我知道如果我想在XML配置文件配置的Spring应用程序中使用 JSR-250 注释,我必须将此标记放在XML配置文件中:
<context:annotation-config/>
但是,如果我使用Java配置类或注释配置而不是基于XML的应用程序来激活 JSR-250 注释,我需要做些什么呢?
答案 0 :(得分:1)
等同于<context:annotation-config/>
的是@AnnotationDrivenConfig
:
@Configuration
@AnnotationDrivenConfig
public class Config {
// may now use @Autowired to reference beans from other @Configuration classes, XML, etc
}