@Override
public String load(final String path) throws Exception {
final org.springframework.core.io.Resource resource = new ServletContextResource(servletContext, path);
try {
byte[] content = FileCopyUtils.copyToByteArray(resource.getInputStream());
return DigestUtils.md5DigestAsHex(content);
} catch (IOException ex) {
LOG.error("Could not calculate MD5 for resource: {}", path);
return runtimeEnvironmentUtil.getRevision();
}
}
FrontendController.java 文件源码
java
阅读 29
收藏 0
点赞 0
评论 0
项目:oma-riista-web
作者:
评论列表
文章目录