标签:.com images img path 分享 src png classpath 格式
Resource template = ctx.getResource("classpath:some/resource/path/myTemplate.txt"); //这个得到的是ClassPahResource.
Resource template = ctx.getResource("file:///some/resource/path/myTemplate.txt"); //这个得到的是FileSystemResource.
Resource template = ctx.getResource("http://myhost.com/resource/path/myTemplate.txt") //这个得到是:URLResource.
具体的解释参考下图:
标签:.com images img path 分享 src png classpath 格式
原文地址:http://www.cnblogs.com/1540340840qls/p/7953603.html