Error resolving template [currentUserCartItems], template might not exist or might not be accessible by any of the configured Template Resolvers

一、问题背景

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

二、报错截图如下

三、我的项目配置如下

四、分析问题

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

五、问题原因

忘记添加注解@ResponseBody了

六、解决方式

添加@ResponseBody注解就可以了

posted @ 2023-01-09 23:29  枫叶艾辰  阅读(14)  评论(0编辑  收藏  举报