如何为bean的原始属性设置值?
既然我们有@Component注解,@Autowired注解也用于绑定实例依赖,那么原始属性呢?
@Component
@Autowired
@Component class Person{ @Autowired Address address; int age /// what about this one? }
java spring
java ×1
spring ×1