java – 如何启用@Required?
作者:互联网
如何在Java(Spring 3.1)中启用@Required注释?不是在xml中,而是在Java中.还有哪个注释我把这个启用?在@Feature下(在@FutureConfiguration或@Bean中(在@Configuration中)?
编辑:
@Feature
public MvcAnnotationDriven annotationDriven(ConversionService conversionService) {
return new MvcAnnotationDriven().conversionService(conversionService)
.argumentResolvers(new CustomArgumentResolver());
}
这是否支持所有注释?
解决方法:
@ anubhava的答案有效,但他引用了Spring 2.0手册,该手册已有5年历史.
在XML配置中,Spring 3.x有一个更优雅的方法:< context:annotation-config />.这也启用了您可能想要的其他一大堆功能,而RequiredAnnotationBeanPostProcessor仅启用了一些功能.
如果你正在使用@ Bean风格的配置,那么应该已经启用了@Required之类的注释,因为这就是@Bean的工作方式.但是,这可能是一个错误 – Spring 3.1仍然处于早期测试阶段,其大部分可能会被打破.
除非你真的知道你在做什么,否则我强烈建议你坚持使用3.0.x.
标签:java,spring,spring-3 来源: https://codeday.me/bug/20190730/1579234.html