博主首页
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 44 下一页
摘要: String hostAddress = InetAddress.getLocalHost().getHostAddress(); 阅读全文
posted @ 2023-01-11 21:01 笑~笑 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 不够6位用0在左边补0Long count = getCountByPredicate(booleanExpression); return String.format("%06d",count); 阅读全文
posted @ 2023-01-09 20:21 笑~笑 阅读(127) 评论(0) 推荐(0) 编辑
摘要: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <includeSyste 阅读全文
posted @ 2023-01-09 15:02 笑~笑 阅读(74) 评论(0) 推荐(0) 编辑
摘要: @Data @Accessors(chain = true) public class GetChangeBillList extends ReBase{ private ChangeBillListData data; @Data @Accessors(chain = true) public s 阅读全文
posted @ 2023-01-04 19:45 笑~笑 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 浏览器随便打开一个地址 ,打开控制台 var xhr = new XMLHttpRequest(); xhr.open('GET', 'http://127.0.0.1:9000/dev/tsscPlanDay/saveTSscPlanDay'); xhr.setRequestHeader("x-a 阅读全文
posted @ 2023-01-03 14:35 笑~笑 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 程序执行一直卡在 : Initializing ExecutorService 去掉idea的断点 阅读全文
posted @ 2022-11-29 17:25 笑~笑 阅读(79) 评论(0) 推荐(0) 编辑
摘要: var express = require('express'); var app = express(); var mysql = require('mysql'); app.get('/testSql', function (req, res) { var connection = mysql. 阅读全文
posted @ 2022-11-03 09:42 笑~笑 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 原因是因为mysql8.0之后的加密方式变了,导致连接报错,将mysql改为之前的旧加密方式即可 alter user 'root'@'%' identified with mysql_native_password by '密码' // 重新设置密码 flush privileges // 刷新权 阅读全文
posted @ 2022-11-03 09:25 笑~笑 阅读(121) 评论(0) 推荐(0) 编辑
摘要: @Configuration把一个类作为一个IoC容器,它的某个方法头上如果注册了@Bean(相当于spring xml里面的bean标签),就会作为这个Spring容器中的Bean。 @Scope注解 作用域 @Scope用于指定scope作用域的(用在类上) scope还有prototype、r 阅读全文
posted @ 2022-10-31 14:58 笑~笑 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Springboot 多传参数导致 JSON parse error: Unrecognized filed ...异常 默认情况下@RequestBody标注的对象必须包含前台传来的所有字段。 如果没有包含前台传来的字段,就会报错:Unrecognized field xxx , not mark 阅读全文
posted @ 2022-09-22 09:35 笑~笑 阅读(1159) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 44 下一页