如何使用jQuery.i18n.properties.js + Spring 3 mvc加载i18n属性文件

我在Spring 3中配置了本地化和内部化mvc.I将属性文件放在资源文件夹中。它工作正常。现在我想使用Javascript内化来根据语言提供正确的警报消息。 我的项目结构在下面给出了属性文件

Project | | src resource |_message.properties |_message_en.properties |_message_es.properties 

我想使用jQuery internalization.Now我想使用jQuery访问这些属性文件。我在javascript中编写了以下代码来加载我的属性文件

 jQuery.i18n.properties({ name:'message', path:'resources/', mode:'both', language:'en' }); **But I am getting Http 404 Error during loading of the page.** **GET http://SERVER IP:PORT/viuw/resources/message.properties?_=1373877147985 404 (Not Found)** How to load Property files using jQuery.i18n.property.js? my configuration is                 web.xml file configuration is  spring org.springframework.web.servlet.DispatcherServlet 1   spring *.html /   index.html  

您在项目结构中列出的路径是resource ,而不是resources 。 希望你能解决这个错误。

试试吧

 jQuery.i18n.properties({ name:'message', path:'resources/', mode:'both', language:'en' }); path:'resource/'