简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
异常的报错信息通常有以下几种:feign.FeignException: status 404 readingJson exception:syntax error 404 等等(主要报错信息)问题的根源是:消费者找不到想要调用的方法,也就是你定义的 Feign 客户端接口与被调用接口不一致。要么是请求方式、请求路径不匹配,要么就是参数不匹配,只要认真核对,不难纠正错误。下面举一个网...
我们先来看下笔者的单元测试的依赖版本:<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.2.6...
解决方案:redisConfig配置类:package cn.suvue.discipline.core.config;import com.fasterxml.jackson.annotation.JsonAutoDetect;import com.fasterxml.jackson.annotation.JsonTypeInfo;import com.fasterxml.jacks...
注意点:多个复合查询使用一个orderby时,注意用AS后的属性名才行!例如:SELECT user_name AS userName,sco_re AS score FROM t1 WHERE user_name LIKE '王%'UNIONSELECT user_name AS userName,sco_re AS score FROM t1 WHERE user_name LIK...