Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将 log4j.jar 和属性文件作为 Java 资源加载到 Oracle 中。我在 Oracle 中的 java 类声明了用于 Java 存储过程的方法。当我运行 java 方法时,它无法定位\加载使用的资源(属性文件)你能告诉我为什么它不能以及如何解决这个问题吗?谢谢你。
解决如下似乎 oracle 仅支持 getResource() 或 getResourceAsString() 用于沿独立 java 一直使用 PropertyConfigurator.configureAndWatch() 的资源加载。将资源定位器和属性配置方法替换为 URL 绑定解决了我的问题。谢谢。