2
我正在用maven/spring做一個項目,但是我正面臨一個惱人的錯誤,eclipse不能識別我的消息包,如果我嘗試啓動weblogic裏面日食(與Oracle WebLogic Server工具),我得到這個錯誤消息,並且部署被中止:Eclipse不識別消息包(f:loadBundle錯誤)
Multiple annotations found at this line:
-config.message not found.
-Resource bundle config.message cannot be found on classpath
,但如果我運行Maven構建,外食啓動WebLogic(startWebLogic.cmd中)效果很好 。
中所引用: <f:loadBundle basename="config.message" var="msg"/>
faces-config.xml中:
<application>
<el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
<locale-config>
<default-locale>pt_BR</default-locale>
<supported-locale>en</supported-locale>
</locale-config>
<resource-bundle>
<base-name>config.message</base-name>
<var>msg</var>
</resource-bundle>
</application>
人已經有這個問題,並解決了嗎?
如果消息包放在'src/main/resources /'下。它是否存在於項目的Java源文件夾中? –
屬性以這種方式放置:http://i.imgur.com/42wRuik.png –