class path resource [templates/] cannot be resolved to absolute file path because it does not reside

报错:
在运行springcloud代码的时候报错,但是不影响正常启动
分析:
经过谷歌和百度发现FreeMarkerConfigurationFactory中存在以下方法:

protected TemplateLoader getTemplateLoaderForPath(String templateLoaderPath) {
        if(this.isPreferFileSystemAccess()) {
            try {
                Resource ex = this.getResourceLoader().getResource(templateLoaderPath);
                File file = ex.getFile();
                if(this.logger.isDebugEnabled()) {
                    this.logger.debug("Template loader path [" + ex + "] resolved to file path [" + file.getAbsolutePath() + "]");
                }

                return new FileTemplateLoader(file);
            } catch (IOException var4) {
                if(this.logger.isDebugEnabled()) {
                    this.logger.debug("Cannot resolve template loader path [" + templateLoaderPath + "] to [java.io.File]: using SpringTemplateLoader as fallback", var4);
                }

                return new SpringTemplateLoader(this.getResourceLoader(), templateLoaderPath);
            }
        } else {
            this.logger.debug("File system access not preferred: using SpringTemplateLoader");
            return new SpringTemplateLoader(this.getResourceLoader(), templateLoaderPath);
        }
    }

解决办法:
在这里插入图片描述
说白了呢就是把spring的日志级别换成INFO即可
在这里插入图片描述
友情提示记得找到自己项目日志的配置路径哦~

  • 3
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值