首页
友链
关于
免责声明
Search
1
王者营地战绩数据王者荣耀查询网页源码
6,209 阅读
2
群晖Active Backup for Business套件备份Linux服务器教程
4,384 阅读
3
影视分享
4,313 阅读
4
(亲测)Jrebel激活破解方式2019-08-21
4,289 阅读
5
centos7 安装及卸载 jekenis
3,573 阅读
日常
文章
后端
前端
Linux
异常
Flutter
分享
群辉
登录
Search
标签搜索
docker
springboot
Spring Boot
java
linux
Shiro
Graphics2D
图片
游戏账号交易
Mybatis
Spring Cloud
centos
脚本
Web Station
群辉
王者营地
战绩查询
平台对接
Spring Cloud Alibaba
nacos
绿林寻猫
累计撰写
249
篇文章
累计收到
26
条评论
首页
栏目
日常
文章
后端
前端
Linux
异常
Flutter
分享
群辉
页面
友链
关于
免责声明
搜索到
23
篇与
异常
的结果
2021-12-08
Spring Cloud RestTemplate报错:java.lang.IllegalStateException: No instances available for
java.lang.IllegalStateException: No instances available for localhost 原:restTemplate.getForObject( uri+"/user/getname",User.class); //uri为得到的地址 如:http://127.0.0.1改:rrestTemplate.getForObject( "http://user-api/user/getname",User.class);//改为在eureka上注册的application.name restTemplate访问https,这个暂时没有去测试,希望对大家有用https://cloud.tencent.com/developer/article/1339988
2021年12月08日
185 阅读
0 评论
0 点赞
2021-12-08
SpringCloud Feign报错 Caused by: java.lang.IllegalStateException: Method has too many Body parameters
Caused by: java.lang.IllegalStateException: Method has too many Body parameters: public abstract com.hujiang.framework.web.domain.AjaxResult com.hujiang.project.zhgd.client.SystemClient.getSystemPrivileges_app(java.lang.Integer,java.lang.Integer)GET方式错误写法@RequestMapping(value="/test", method=RequestMethod.GET) User test(String name, int age); 启动服务的时候,会报如下异常:Caused by: java.lang.IllegalStateException: Method has too many Body parameters: public abstract com.hujiang.framework.web.domain.AjaxResult com.hujiang.project.zhgd.client.SystemClient.getSystemPrivileges_app(java.lang.Integer,java.lang.Integer)异常原因:当使用Feign时,如果发送的是get请求,那么需要在请求参数前加上@RequestParam注解修饰,Controller里面可以不加该注解修饰。正确写法@RequestMapping(value="/test", method=RequestMethod.GET) User test(@RequestParam("name") String name,@RequestParam("age") int age); POST方式 错误写法public int save(@RequestBody Person p, @RequestBody UserModel user);feign中你可以有多个@RequestParam,但只能有不超过一个@RequestBody。正确写法public int save(@RequestBody Person p,@RequestParam("userId") String userId,@RequestParam("userTel") String userTel);
2021年12月08日
353 阅读
0 评论
0 点赞
2021-12-08
com.microsoft.sqlserver.jdbc.SQLServerException: 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。
连接sqlserver2005时报这个错,JDK使用的是1.8找到Windows下 java安装路径,以下是本人安装路径C:softwareJavajdk1.8.0_201jrelibsecurity修改java.security改为 去掉 , 3DES_EDE_CBC ,启用旧的算法。然后就可以连接了
2021年12月08日
958 阅读
0 评论
0 点赞
1
2
3