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