我通常使用 XML Spring 配置(spring-conf.xml)来做这样的事情:
<beans>
<context:component-scan base-package="org.company.dept.business" />
...
<bean id="myServiceB2B" class="org.company.dept.business.service.MyService"
p:configLocation="WEB-INF/classes/b2b.properties" />
<bean id="myServiceResidential" class="org.company.dept.business.service.MyService"
p:configLocation="WEB-INF/classes/residential.properties" />
...
</beans>
因为 MyService 类只有一个文件(定义),有没有办法在不使用 XML Spring 配置的情况下实例化这两个 bean?
我对 XML 定义没问题,但我总是尽量减少我的 XML 配置。