1

这些类之间有什么区别,我什么时候应该将它们与@Configure 结合使用?

org.springframework.context.annotation.Bean

org.springframework.config.java.annotation.Bean;

4

2 回答 2

4

看起来你的类路径中有一个过时的 jar 文件 -org.springframework.config.java.annotation.Bean不再使用最新的 Spring 3.1.2 jar,它是org.springframework.context.annotation.Bean应该与@Configuration类一起使用的注释

于 2012-09-05T22:26:40.650 回答
1

JavaConfig 依赖项是spring-contextSpring 3.0 的一部分。因此,如果您使用 Spring > 3.0 构建应用程序,请使用org.springframework.context.annotation.Bean

于 2012-09-05T22:33:01.943 回答