我已经使用我的 user.properties 文件来访问存储在 WEB-INF 文件夹中的数据库。它在运行 GGTS(Groovy Grail Tool Suite)时正常工作。
我用了
Properties prop = new Properties();
prop.load(DataSource.class.getClassLoader().getResourceAsStream("user.properties"));
在数据源中
当我作为独立运行它时它工作
但是当我创建它的war文件并将它部署到tomcat服务器时它不起作用。
我的 user.properties 位于 WEB-INF 文件夹中。
显示错误
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'pluginManager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.NullPointerException
提前致谢。请帮忙