ApplicationResources.properties位置问题
ApplicationResources.properties 放在 com.xxx.struts下就可以读
<message-resources parameter= "com.xxx.struts.ApplicationResources " />
放在WEB-INF下就不行??
<message-resources parameter= "/WEB-INF/ApplicationResources " />
这个资源文件一定要放在src文件夹下吗?放在WEB-INF根目录不行??
------解决方案--------------------ApplicationResources.properties放在src文件夹部署以后就会到WEB-INF的classes文件夹下的。
直接写: <message-resources parameter= "ApplicationResources " /> 好了。