我有一個Maven輯陣模塊項目:彈簧自動裝配給空指針異常
項目
-ProjectDAO
-Projectx
ProjectDAO使用spring + hibernate
從projectX創建我正在嘗試使用下面的內容:
public class TesMessage implements ITesMessage {
@Autowired
private IGlobal iGlobal;
...
iGlobal.getSomeMethod();
}
..有了上面的代碼,我得到空指針異常,我是否缺少任何東西?
我有這個在我的appContext.xml
<context:component-scan base-package="com.test.nty.dal">
<context:include-filter type="annotation"
expression="org.springframework.stereotype.Repository" />
</context:component-scan>
感謝
向我們展示您的應用程序上下文 –
您可以將'TesMessage'類放在'com.test.nty.dal'包中並向其添加'@ Repository'註釋嗎? – user1516873
這兩個類位於我的應用程序的不同模塊中。提議的設計對我來說不起作用嗎? –