これらのクラスの違いは何ですか?@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
最新のSpring3.1.2jarは使用されていません。これは、クラスorg.springframework.context.annotation.Bean
で使用する必要があるアノテーションです。@Configuration
JavaConfigの依存関係は、Spring3.0以降の一部ですspring-context
。したがって、Spring> 3.0を使用してアプリをビルドする場合は、org.springframework.context.annotation.Beanを使用してください。