爲何???前端
因爲放在resoures(Maven)下,全部沒法前端沒法直接獲取配置文件信息java
一、經過springmvc配置文件映射國際化配置文件()spring
<mvc:resources mapping="/i18n/messages**" location="classpath:i18n/messages**" />mvc
訪問路徑:http://ip:port/項目名/i18n/messages_zh_CN.propertiesapp
二、經過springmvc後臺獲取文件,而後映射到前端(可是前端獲取的純Map對象)spa
Properties properties = null; try { properties = PropertiesLoaderUtils.loadAllProperties("message/messages_zh_CN.properties"); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return properties;
訪問路徑:http://ip:port/項目名/treeCode/getPro .net