1.WebLogic10在modules下有自己的commons包,会覆盖项目的jar包,需在WEB-INF下加一个weblogic.xml,指定先加载项目jar包。
true /* UTF-8 /name
2.系统加载配置文件使用getServletContext().getRealPath("/") ,WebLogic下以war包形式部署时,无法得到路径,改为getServletContext().getResource("/")或者将war包解压,以目录方式部署。