ClassLoader.getSystemResourceAsStream(“path“) 与 Class.getClassLoader().getResourceAsStream(“path“)

ClassLoader.getSystemResourceAsStream uses the system ClassLoader (ClassLoader.getSystemClassLoader) to search for the resource.

这种方式会使用系统类加载器去搜索配置文件

this.getClass().getClassLoader().getResourceAsStream() uses the same ClassLoader that loaded the class for “this” Object.
That ClassLoader might be a child of the system ClassLoader, and thus could have access to resources which the system ClassLoader does not have. But since it is a child of the System ClassLoader, it also will ask its parent (System) to help it find resources. So using this method will allow you to find things in that ClassLoader AND in the System ClassLoader.The search order is defined in the javadoc for ClassLoader.getResource (parent(s) first, then child).

这种方式会使用系统类加载器的子类去搜索配置文件,本质仍是系统类加载器;但这种方式既能获取this的类加载器的资源,也能获取系统类加载器的资源

For example, say you were running some code from a Servlet. The System ClassLoader contains whatever you put in CLASSPATH when you started theWeb Server, but the servlet class is probably loaded by another ClassLoader that the server created to handle the WebApp’s WEB-INF/lib and WEB-INF/classes directories. Things in those directories would be accessible using that WebApp’s ClassLoader, but would not be in CLASSPATH - so the System ClassLoader does not know about them.

  • 当你启动Web服务器时,系统类加载器会将你的CLASSPATH认定为搜索资源文件的根路径。
  • 而在你调用Servlet执行业务逻辑时,该Servlet可能是由服务器的类加载器加载用于处理WEB-INF的,因此该Servlet会以WEB-INF作为搜索配置文件的根路径。

I’m not sure I explained that well - hope it helps.

So if you want to get properties from a static method, it’s better to use:
SomeClass.class.getClassLoader().getResourceAsStream("XX.properties"));


若翻译不得体请见谅。。。
参考地址

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值