摘要:
依赖 <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> <version>1.11.490</version> </dependency> <dependency> <grou 阅读全文
摘要:
如果路径含有中划线,将无法取到值 如:$.aa964cf2-bf62-36bd4811.53672-bf62-42906dc.6458b-82c1-3a157e2a 这时候就需要转换下 变成 $['aa964cf2-bf62-36bd4811']['53672-bf62-42906dc']['645 阅读全文
摘要:
userList = userList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(()->new TreeSet<>(Comparator.comparing(User::getCity))), Arr 阅读全文
摘要:
后台bean是 private String uName; 但是前端生成的json是 uname 会自动变成小写 如果我们只是个别的几个的话,只需要加个注解 @JsonProperty("uName") private String uName; 这样就可以了 阅读全文
摘要:
{"error":{"root_cause":[{"type":"query_phase_execution_exception","reason":"Result window is too large, from + size must be less than or equal to: [10 阅读全文
摘要:
Invocation of init method failed; nested exception is ElasticsearchStatusException[Elasticsearch exception [type=search_phase_execution_exception, rea 阅读全文
摘要:
java.io.IOException: listener timeout after waiting for [30000] ms at org.elasticsearch.client.RestClient$SyncResponseListener.get(RestClient.java:905 阅读全文
摘要:
ApplicationContext.publishEvent 是Spring提供的解耦的一种方式 (基于内存)。同样可以使用 MQ 组件 / 线程池 代替。 参数类 NotifyEvent.java import lombok.AllArgsConstructor; import lombok.D 阅读全文
摘要:
标题 # 一级标题 ## 二级标题 ### 三级标题 备注:一个#代表一级标题,2个#代表二级标题,依次类推支持6级标题,切记#和文字之间有个空格 字体 加粗 内容左右各两个* **我是加粗字体** 斜体 内容左右各一个* *我是斜体* 斜体和加粗 内容左右3个* ***我是加粗的斜体内容*** 删 阅读全文
摘要:
没有的话就引入依赖 <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.10.1</version> </dependency> 阅读全文