这些类之间有什么区别,我什么时候应该将它们与@Configure 结合使用?
org.springframework.context.annotation.Bean
org.springframework.config.java.annotation.Bean;
这些类之间有什么区别,我什么时候应该将它们与@Configure 结合使用?
org.springframework.context.annotation.Bean
org.springframework.config.java.annotation.Bean;
看起来你的类路径中有一个过时的 jar 文件 -org.springframework.config.java.annotation.Bean
不再使用最新的 Spring 3.1.2 jar,它是org.springframework.context.annotation.Bean
应该与@Configuration
类一起使用的注释
JavaConfig 依赖项是spring-context
Spring 3.0 的一部分。因此,如果您使用 Spring > 3.0 构建应用程序,请使用org.springframework.context.annotation.Bean