logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Springboot中"RestController cannot be resolved to a type"

问题现象:1、ping www.baidu.com和ping 8.8.8.8都不通2、虚拟机ping主机地址不通,主机能ping通虚拟机的地址问题一解决方案:1) 确定设置了域名服务器(ipconfig/all找出dns), 没有的话, 建议设置Google的公共DNS服务, 它应该不会出问题的cat /etc/resolv.conf————————

记一次springcloud的feign调用报错exception is feign.RetryableException: Read timed out executing POST http://

问题出现在:eureka.instance.non-secure-port=80这个配置上,解决这个问题之前不了解这个配置的作用,自动忽略了情况描述:使用@feignclient调用服务提供者,但是每次都报标题所记错误,搜索的类似错误,都是要修改超时时间,但是我把@feignclient中的value修改为开发环境的应用名称是正常的(开发环境用的类似于${server.port},...

JSON parse error: Can not deserialize instance of java.util.ArrayList out of VALUE_STRING token

后台使用List<template>获取参数前端错误传参"[{"templateId":234,"intentId":99,"template":"一段话"}]"前后不应该有双引号的”,这是个数组,正确的Json串为:[{"templateId":23

Git命令

更新git pull origin master如遇错误,一般是"Please commit your changes or stash them before you merge"顺序执行以下命令即可:git stashgit pull origin mastergit stash popadd修改文件至暂存区git add .提交...

#git
到底了