摘要: 前言 ElasticSearch支持地理空间数据查询、搜索,提供geo_point、geo_shape两种地理数据类型。 geo_point用于描述一个或多个地理坐标点,主要用于周边位置查询、边界内搜索点、聚合多个范围内的点等功能。 geo_shape用于描述点线面等多种地理数据,使用GeoJson 阅读全文
posted @ 2023-10-18 15:29 陆上江南 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 前言 ElasticSearch Java API是ES官方在8.x版本推出的新java api,也可以适用于7.17.x版本的es。 本文主要参考了相关博文,自己手动编写了下相关操作代码,包括更新mappings等操作的java代码。 代码示例已上传github。 版本 elasticsearch 阅读全文
posted @ 2023-10-18 15:20 陆上江南 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 起因 因业务需求,项目中引入了一个对方的业务jar包,但是发现代码却启动不起来了,报错: org.springframework.beans.PropertyBatchUpdateException; nested PropertyAccessExceptions (1) are: Property 阅读全文
posted @ 2023-10-17 10:44 陆上江南 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 之前都在CSDN上写博客,记录内容。 随着学业生涯的结束,不写博客已经一年了。 希望在这里有新的开始。 阅读全文
posted @ 2020-10-09 10:17 陆上江南 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 一、POM.xml文件配置 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency 阅读全文
posted @ 2019-06-04 11:53 陆上江南 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 一、Springboot配置Redis pom.xml文件需要的依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <! 阅读全文
posted @ 2019-05-29 09:55 陆上江南 阅读(20416) 评论(0) 推荐(4) 编辑
摘要: entityManagerFactory错误 阅读全文
posted @ 2019-05-20 15:29 陆上江南 阅读(13532) 评论(0) 推荐(0) 编辑