我对通过xml文件导入spring服务有问题。
A.xml
<bean id="AtomService" class="{class}">
<property name="sqlSession" ref="sqlSession"/>
</bean>
B.xml
<bean id="BtomService" class="{class}">
<property name="AtomService" ref="AtomService"/>
</bean>
我试图将导入语法放在B.xml文件中,例如(路径是准确的)
<import resource:~~A.xml>
并在STS上配置Beans support(config Sets)选项卡。但是他们没有帮助。 发生错误是因为日志不是关于bean的,而是使nullPointerException为引用的变量。 如果您有任何解决方案,请告诉我。.