首页 > 其他分享 > Error resolving template [currentUserCartItems], template might not exist or might not be accessibl

Error resolving template [currentUserCartItems], template might not exist or might not be accessibl

时间:2023-01-09 23:33:08浏览次数:39  
标签:accessible ResponseBody template 注解 might 模板

一、问题背景

远程调用其他微服务的请求

二、报错截图如下

三、我的项目配置如下

四、分析问题

漏了注解@ResponseBody 因为远程返回的都是json,返回String字符串将会被当做Thymeleaf模板的名称去找对应的html模板文件,但找不到该模板文件,所以会出现上述错误

五、问题原因

忘记添加注解@ResponseBody了

六、解决方式

添加@ResponseBody注解就可以了

标签:accessible,ResponseBody,template,注解,might,模板
From: https://www.cnblogs.com/fyusac/p/17038886.html

相关文章