
问题记录
大可i不必
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TS2550: Property ‘entries‘ does not exist on type ‘ObjectConstructor‘.
TS2550: Property 'entries' does not exist on type 'ObjectConstructor'.原创 2022-11-08 21:44:06 · 1814 阅读 · 1 评论 -
1093 - You can‘t specify target table ‘api‘ for update in FROM clause
您不能在 FROM 子句中指定目标表 ‘Table’ 进行更新。原创 2022-09-06 09:32:54 · 178 阅读 · 0 评论 -
http请求 405错误
http请求 405错误 方法不被允许 (Method not allowed)405错误常常伴随着POST请求,所有有好多人会告诉你这些:But 时候他并不能解决你的问题。所以我说一点不一样的。假如你有一个user类,里面有两个属性userName,password 数据类型分别为int 和 String。前台表单提交并且是post请求。后台用user接受参数,也是post请求同样也会报405。可能原因是你输入的参数与user所需要的参数类型不匹配。请仔细排查。如果能帮到你,请不要吝啬原创 2022-03-17 17:31:20 · 89599 阅读 · 0 评论 -
页面请求后台后,返回json 前台报406错误
错误原因: 页面无法解析json格式,所以报406错误。解决:1、排查是否缺少jar包maven项目可直接使用:<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind --><dependency> <groupId>com.fasterxml.jackson.core</groupId> ...原创 2021-04-18 12:17:50 · 661 阅读 · 0 评论 -
Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure 解决
Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure 解决网上说法:1、修改my.cnf:[mysqld]wait_timeout=31536000interactive_timeout=31536000将过期时间修改为1年。2、在连接URL上添加参数:&autoReconnect=true&failOverReadOnly=false都没有解决。原创 2021-03-29 21:09:50 · 17462 阅读 · 2 评论