摘要:
Spring接口缓存实现方案Caffeine和EhCache 1.引入jar包 compile("com.github.ben-manes.caffeine:caffeine:2.8.6") compile("org.springframework.boot:spring-boot-starter- 阅读全文
摘要:
linux命令head,tail查询日志头部和尾部 & 查询日志的关键字的上下文日志方法 tail -n 10 test.log 查询日志尾部最后10行的日志;tail -n -10 test.log 查询日志尾部最后10行的日志; 同上tail -n +10 test.log 查询10行之后的所有 阅读全文
摘要:
Gzip压缩文件和压缩字符串,web接口应用 1.压缩文件 package com.example.core.mydemo.gzip; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IO 阅读全文
摘要:
依赖注入和循环依赖注入 1.java bean注入的两种方式1.1 Resource注解方式 @Resource private NestedComponent nestedComponent2; 1.2 构造器注入的方式来 private NestedComponent nestedCompone 阅读全文
摘要:
Apollo配置map键值对的配置Autowired annotation is not supported on static fields: private static java.util.Map com.insurdock.conf.CouponConfigure.chooseCityEma 阅读全文
摘要:
es分页,pageNum从0开始和es排序代码demo 如果从1开始,每页150条记录,可能查询不到结果。排查下来是初始的第一页的参数错误。 参数从0开始计算,es搜素,需要注意起始页。否则查询结果为空。 //es分页,pageNum从0开始。 protected void page(OrderVO 阅读全文
摘要:
feign jar加载程序启动时报错解决,需要加上扫描路径 Consider defining a bean of type 'com.order.open.service.FeignCancelOrderService' in your configuration. 启动类需要加上如下注解: @E 阅读全文
摘要:
redis hget hdel hgetall #查询所有,阿里云dms不支持hgetall testService:renter_time_overlapping:租客会员号 #查询HGET testService:renter_time_overlapping:租客会员号 订单号#释放HDEL 阅读全文
摘要:
http响应码简介 1 返回401一般生产环境出现这个问题,是由于没有通过接口的登录认证。出现这种情况,一般用户在尝试访问受保护的资源前,需要通过某种形式的身份验证(如登录),但如果未能正确提供必要的认证信息,如Token、用户名和密码等。就会出现返回码是401的情况。 2 返回403如果生产环境请 阅读全文
摘要:
idea No usages found in All Places Press Ctrl+Alt+F7 again to search in 'Project Files' 出现 usages 无效的情况 No usages found in All Places 今天偶然间碰到了这个问题, 问题 阅读全文
摘要:
Java大事务处理 1.少用@Transactional注解,可以使用编程式事务2.将查询(select)方法放到事务外,事务失效原因:spring aop需要生成代理对象,直接方法调用使用的还是原始对象,所以事务不会生效。 1.新加一个Service方法 2.在该Service类中注入自己 3.在 阅读全文
摘要:
Java二分查找算法Collections.binarySearch package com.example.core.mydemo.javaDemo; import java.util.ArrayList; import java.util.Collections; /** * 二分查找算法是一种 阅读全文
摘要:
Java工具类 NumberUtils 对整型数字的引用 package com.example.core.mydemo.javaDemo; public class IntegerTest { public static void main(String[] args) { Integer one 阅读全文
摘要:
Java获取时间戳,毫秒数和秒数 package com.example.core.mydemo.javaDemo; import java.time.LocalDateTime; import java.time.ZoneId; public class TimeTest { public sta 阅读全文