摘要:
Linux redis5.0.0安装 1.从官网下载,然后传到服务器,tar -zxvf解压 2.进入redis [root@localhost software]# cd redis-5.0.0/ 3.安装:make, (1)若提示:: gcc: Command not found 要安装gcc 阅读全文
摘要:
ES聚查询报错:Fielddata is disabled on text fields by default. Set fielddata=true 1.原代码 //以品牌分组,求组内情况 @Test public void testBucket(){ NativeSearchQueryBuild 阅读全文
摘要:
单元测试@Test加@Transactional注解自动回滚 1.今天在做单元测试在test注解加了@Transactional发现事务自动回滚了 JDBC Connection [com.mysql.cj.jdbc.ConnectionImpl@60510791] will be managed 阅读全文
摘要:
@NotNull和@NotBlank的区别 @NotBlank只能注释在字符串字段(String)上;不能注释在Integer;注释Integer的类型要用@NotNull 否则会报"HV000030: No validator could be found for type: java.lang. 阅读全文
摘要:
校验报错 javax.validation.UnexpectedTypeException: HV000030: No validator could be found for type: java.lang.Integer 原因:java中的实体Integer 类型 使用了@NotBlank注解, 阅读全文