2.4. ResourceLoader接口
public interface ResourceLoader {
Resource getResource(String location);
ClassLoader getClassLoader();
}Resource template = ctx.getResource("some/resource/path/myTemplate.txt");Resource template = ctx.getResource("classpath:some/resource/path/myTemplate.txt");Resource template = ctx.getResource("file:///some/resource/path/myTemplate.txt");Resource template = ctx.getResource("https://myhost.com/resource/path/myTemplate.txt");前缀
例子
解释
最后更新于