上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 【问题】IDEA 对项目Maven进行install项目时报错 错误如下: Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M5:test (default-test) on project cr 阅读全文
posted @ 2022-10-24 19:18 changlinlo 阅读(1893) 评论(0) 推荐(1) 编辑
摘要: MySQL update中使用select:You can't specify target table 'xxx' for update in FROM clause 问题 【问题】想通过update更新某个查询的合计值,这样就可以不用查询两次了(一个查询统计总数,一个更新表中的数据) 【原因】update语句不能包含select的查询结果 不能通过 update a set a.xx= (select xx from b) 必须使用 join 进行连接 update 阅读全文
posted @ 2022-09-17 13:31 changlinlo 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 如果改了nacos,重启一下nacos就行了。 阅读全文
posted @ 2022-08-30 08:51 changlinlo 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 【问题】Error:(1, 1) java: 非法字符: '\ufeff' Error:(1, 10) java: 需要class, interface或enum 【原因】编译问题 因为程序编译时是按照UTF-8的格式来编译运行,但是当前文件格式是UTF-8-BOM编码的,编辑器不能识别文件头部的\ 阅读全文
posted @ 2022-08-22 15:03 changlinlo 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 【问题】正则表达式匹配国际手机号:+xx xxxxxxxxxxx 格式,结果报错 【原因】\xa0 空格 【方法一】换成 键盘上的空格,让前端传的参数改一下 结果是可以的,但是前端既然会传这个参数,那坑定会有用,所有也可以改正则表达式,来实现匹配效验规则。 【方法二】改后端正则表达式 结果也是可以的 阅读全文
posted @ 2022-08-16 09:03 changlinlo 阅读(190) 评论(1) 推荐(0) 编辑
摘要: java中整数前进行'0'填充: DecimalFormat df=new DecimalFormat("0000"); Integer last = categories.size() + 1; System.out.println("流水号:"+df.format(last)); code = 阅读全文
posted @ 2022-08-11 14:27 changlinlo 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 【问题】excel导入响应msg内容乱码问题 其他导入没问题 【解决】通过idea配置修改文件编码 【结果】OK 阅读全文
posted @ 2022-08-04 08:05 changlinlo 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 【问题】 *************************** APPLICATION FAILED TO START *************************** Description: The dependencies of some of the beans in the app 阅读全文
posted @ 2022-08-02 09:52 changlinlo 阅读(1436) 评论(7) 推荐(0) 编辑
摘要: 【问题】nacos格式上的错误导致无法跳转问题 14:16:15.416 [boundedElastic-14] WARN o.s.c.l.c.RoundRobinLoadBalancer - [getInstanceResponse,97] - No servers available for s 阅读全文
posted @ 2022-07-19 14:28 changlinlo 阅读(3228) 评论(1) 推荐(0) 编辑
摘要: nacos2.0 安装及配置 【启动配置】 nacos启动报错问题,2.0版本默认都是以集群的模式去运行的,我们只需要用单机模式去运行即可,修改一下 startup.cmd 里的代码配置。 默认的配置是 set MODE="cluster" 我们将其改成 set MODE="standalone"即可,修改后保存。 【数据库配置 阅读全文
posted @ 2022-07-19 10:34 changlinlo 阅读(866) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页