我在 WebSphere Liberty 17.0.0.4 上运行。部署了位于{wlp_install_dir}/lib
目录下的 Web 应用程序和自定义身份验证模块。并且该 jar 文件被标记为library
server.xml 文件。这是它在 server.xml 中的外观
<library id="CustomLoginModuleLib">
<fileset dir="${wlp.lib.dir}" includes="custom_auth.jar"/>
</library>
现在的问题是,我想将.properties
位于custom_auth.jar
文件中的文件用于 Web 应用程序。
已尝试以下代码段进行访问:
this.getClass().getResourceAsStream("location/of/package/file.properties");
ClassLoader.getSystemResourceAsStream("location/of/package/file.properties");
但是,两者都不起作用。
知道我们如何访问位于库 jar 文件中的属性文件。