我喜欢访问 jar 中的属性文件。有 foo.jar,它位于 boo.war 中。在 foo.jar 内部的 fooClass 类中,变量引用 jar 中的属性文件,该文件是使用 spring 注入的。
<util:properties id="name" location="classpath:\foo-Needed.properties"/>
当战争被放置在服务器并开始时,java.lang.NullPointerException
在访问属性时会被触发。
fooClass 将在服务器启动时启动。
有什么建议可以解决这个问题吗?这可能看起来很傻,但我对此很陌生。
提前致谢。