2017-08-05 60 views
0

當我嘗試在我現有的spring項目中使用junit來進行整合時,出現以下錯誤。在類路徑資源中定義名稱爲'/ sbhupload'的Bean時出錯 - Junit

> Caused by: org.springframework.beans.factory.BeanCreationException: 
> Error creating bean with name '/sbhupload' defined in class path 
> resource [com/scb/test/base/CAD_ApplicationContext_Test.xml]: 
> Instantiation of bean failed; nested exception is 
> java.lang.ExceptionInInitializerError 
+0

有趣的部分如下。初始化程序中的異常是什麼? – thst

+0

所致:顯示java.lang.NullPointerException \t在組織:在sun.reflect.NativeConstructorAccessorImpl.newInstance0(本機方法)java.lang.ExceptionInInitializerError \t \t 在sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java –

+0

致.apache.struts.util.MessageResources.getMessageResources(MessageResources.java:577) \t at org.apache.struts.actions.DispatchAction。(DispatchAction.java:153) \t ... 40 more –

回答

0

您似乎錯過了您的類路徑上提供的消息資源。由於您沒有提供任何代碼,因此無法再說。

MessageResources是通過struts框架(可能爲jsp標籤)解決的文本和i18n翻譯。

這些通常是foo_<locale_country>.properties的文件

相關問題