bean注解和component @configuration和@component之間的區(qū)別是什么?
@configuration和@component之間的區(qū)別是什么?@configuration和@component之間的區(qū)別是:@Component注解的范圍最廣,所有類都可以注解,但是@Conf
@configuration和@component之間的區(qū)別是什么?
@configuration和@component之間的區(qū)別是:@Component注解的范圍最廣,所有類都可以注解,但是@Configuration注解一般注解在這樣的類上:這個類里面有@Value注解的成員變量和@Bean注解的方法,就是一個配置類。