Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有一个用 注释的私有静态内部类@Service,它会自动装配吗?Spring的组件搜索会找到吗?
@Service
是的; Spring 的组件扫描器还将找到内部类并将它们视为 bean。
记住在从 XML 文件中引用类时使用 $-notation;例如
<bean id="myBean" class="com.mybeans.OuterClass$InnerClass"/>.
<bean id="myBean" class="com.mybeans.OuterClass$InnerClass"/>
更新:是的;Spring 可以实例化私有内部类。