标签: java spring dependency-injection
对于Spring依赖注入,bean的类及其setter方法是否可以是包私有的?
我的直觉是“不”,因为Spring容器必须实例化该类,然后调用其setter方法,但是this tutorial给出了一个示例,其中bean的类是包私有的。