摘要:
@Data @Accessors(fluent = true) public class A { private String id; private List<B> b; } @Data @Accessors(fluent = true) public class B { private Stri 阅读全文
摘要:
分词高亮搜索代码 List<A> list = new ArrayList<>(); //设置高亮显示 HighlightBuilder highlightBuilder = new HighlightBuilder().field("*").requireFieldMatch(false); hi 阅读全文
摘要:
WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 1 vim /etc/sysctl.co 阅读全文
摘要:
之前的项目都是使用SVN进行代码管理,万一SVN挂了,,,项目全部爆炸,,,所以定时备份还是有必要的,,,虽然现在都不用SVN了,,,记录一下自己的备份方法 @echo off for /f %%c in (D:\LIST.TXT) do svnadmin dump D:\Repositories\ 阅读全文