当前位置: 代码迷 >> 综合 >> Spring 资源管理
  详细解决方案

Spring 资源管理

热度:83   发布时间:2024-01-21 14:38:43.0

applicationContext.getResource(“classpath:文件名”):在src根目录下,在类路径下
applicationContext.getResource(“classpath:/chap01/文件名”): 以src根目录下的基准往下走。
applicationContext.getResource(“file:c:/a.properties”):在系统文件目录下。
 
  相关解决方案