mongodb lbs java_LBS JAVA Spring mongoDB

基本介绍

位置服务(LBS)解决的主要问题是当前位置周围某个范围内的人或场所.

在传统的解决方案,开发人员需要根据复杂的几何运算与大量的SQL语句进行查找,这无疑加大的开发人员的开发难度.

现在我们需要更为方便的解决方案,MongoDB为我们完美解决此类LBS问题.此篇文章也主要使用SpringData,将spring与MongoDB进行整合.

二维地图

MongoDB目前支持二维的地图查询,查询区域包括圆形与矩形,距离单位包括MILES,KILOMETERS,NEUTRAL,下面的示例演示距离单位为NEUTRAL,而实际生产应用中则会用到MILES与KILOMETERS.

MongoDB示例

首先定义一个位置集合,给定a,b,c,d节点.

1

2

3

4

5

6

7

8

>

db

.

createCollection

(

"location"

)

{

"ok"

:

1

}

>

db

.

location

.

save

(

{

_id

:

"A"

,

position

:

[

0.1

,

-

0.1

]

}

)

>

db

.

location

.

save

(

{

_id

:

"B"

,

position

:

[

1.0

,

1.0

]

}

)

>

db

.

location

.

save

(

{

_id

:

"C"

,

position

:

[

0.5

,

0.5

]

}

)

>

db

.

location

.

save

(

{

_id

:

"D"

,

position

:

[

-

0.5

,

-

0.5

]

}

)

接着指定location索引

1

db

.

location

.

ensureIndex

(

{

position

:

"2d"

}

)

现在我们可以进行简单的GEO查询

查询point(0,0),半径0.7附近的点

1

2

3

4

>

db

.

location

.

find

(

{

position

:

{

$near

:

[

0

,

0

]

,

$maxDistance

:

0.7

}

}

)

{

"_id"

:

"A"

,

"position"

:

[

0.1

,

-

0.1

]

}

查询point(0,0),半径0.75附近的点

1

2

3

4

5

6

>

db

.

location

.

find

(

{

position

:

{

$near

:

[

0

,

0

]

,

$maxDistance

:

0.75

}

}

)

{

"_id"

:

"A"

,

"position"

:

[

0.1

,

-

0.1

]

}

{

"_id"

:

"C"

,

"position"

:

[

0.5

,

0.5

]

}

{

"_id"

:

"D"

,

"position"

:

[

-

0.5

,

-

0.5

]

}

我们可以看到半径不一样,查询出的点也不一样,因为c点坐标为[0.5,0.5],c至圆点的距离根据勾股定理可得出Math.sqrt(0.25 +0.25) ≈ 0.707,所以最大距离0.7时查找不到你要的点.

查询[0.25, 0.25], [1.0,1.0]区域附近的点

1

2

3

4

5

>

db

.

location

.

find

(

{

position

:

{

$within

:

{

$box

:

[

[

0.25

,

0.25

]

,

[

1.0

,

1.0

]

]

}

}

}

)

{

"_id"

:

"C"

,

"position"

:

[

0.5

,

0.5

]

}

{

"_id"

:

"B"

,

"position"

:

[

1

,

1

]

}

Spring Data示例

spring data为我们封装了mongoDB访问接口与实现,我们可以像使用hibernateTemplate一样使用mongoTemplate.

首先我们需要像hibernate一样定义pojo类

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

import

org

.

springframework

.

data

.

annotation

.

Id

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

mapping

.

Document

;

@Document

(

collection

=

"location"

)

public

class

Location

{

@Id

private

String

id

;

private

double

[

]

position

;

/** getter setter hashcode equals toString ...  */

}

定义Dao,我们先使用最简单的mongoTemplate来实现

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

import

java

.

util

.

List

;

import

org

.

springframework

.

beans

.

factory

.

annotation

.

Autowired

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

MongoTemplate

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

geo

.

Box

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

geo

.

Point

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

query

.

Criteria

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

query

.

Query

;

import

org

.

springframework

.

stereotype

.

Repository

;

@Repository

public

class

LocationDao

{

@Autowired

MongoTemplate

mongoTemplate

;

public

List

findCircleNear

(

Point

point

,

double

maxDistance

)

{

return

mongoTemplate

.

find

(

new

Query

(

Criteria

.

where

(

"position"

)

.

near

(

point

)

.

maxDistance

(

maxDistance

)

)

,

Location

.

class

)

;

}

public

List

findBoxNear

(

Point

lowerLeft

,

Point

upperRight

)

{

return

mongoTemplate

.

find

(

new

Query

(

Criteria

.

where

(

"position"

)

.

within

(

new

Box

(

lowerLeft

,

upperRight

)

)

)

,

Location

.

class

)

;

}

}

最后我们写一个test类

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

import

java

.

util

.

Collection

;

import

java

.

util

.

List

;

import

org

.

junit

.

Before

;

import

org

.

junit

.

Test

;

import

org

.

junit

.

runner

.

RunWith

;

import

org

.

springframework

.

beans

.

factory

.

annotation

.

Autowired

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

MongoTemplate

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

geo

.

Point

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

index

.

GeospatialIndex

;

import

org

.

springframework

.

test

.

context

.

ContextConfiguration

;

import

org

.

springframework

.

test

.

context

.

junit4

.

SpringJUnit4ClassRunner

;

@RunWith

(

SpringJUnit4ClassRunner

.

class

)

@ContextConfiguration

(

locations

=

{

"classpath:/applicationContext.xml"

,

"classpath:/application-mongo.xml"

}

)

public

class

MongoDBTest

{

@Autowired

LocationDao

locationDao

;

@Autowired

MongoTemplate

template

;

@Before

public

void

setUp

(

)

{

// 等同db.location.ensureIndex( {position: "2d"} )

template

.

indexOps

(

Location

.

class

)

.

ensureIndex

(

new

GeospatialIndex

(

"position"

)

)

;

// 初始化数据

template

.

save

(

new

Location

(

"A"

,

0.1

,

-

0.1

)

)

;

template

.

save

(

new

Location

(

"B"

,

1

,

1

)

)

;

template

.

save

(

new

Location

(

"C"

,

0.5

,

0.5

)

)

;

template

.

save

(

new

Location

(

"D"

,

-

0.5

,

-

0.5

)

)

;

}

@Test

public

void

findCircleNearTest

(

)

{

List

locations

=

locationDao

.

findCircleNear

(

new

Point

(

0

,

0

)

,

0.7

)

;

print

(

locations

)

;

System

.

err

.

println

(

"-----------------------"

)

;

locations

=

locationDao

.

findCircleNear

(

new

Point

(

0

,

0

)

,

0.75

)

;

print

(

locations

)

;

}

@Test

public

void

findBoxNearTest

(

)

{

List

locations

=

locationDao

.

findBoxNear

(

new

Point

(

0.2

,

0.2

)

,

new

Point

(

1

,

1

)

)

;

print

(

locations

)

;

}

public

static

void

print

(

Collection

locations

)

{

for

(

Location

location

:

locations

)

{

System

.

err

.

println

(

location

)

;

}

}

}

大家可以看到运行结果与我们直接在mongoDB上的一样.

MongoRepository

MongoRepository提供了对MongoTemplate的封装与实现,只需要继承MongoRepository接口,填上对应的bean类与ID类型,无需实现里面的方法即可使用,先看代码.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

import

org

.

springframework

.

data

.

mongodb

.

core

.

geo

.

Box

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

geo

.

Distance

;

import

org

.

springframework

.

data

.

mongodb

.

core

.

geo

.

Point

;

import

org

.

springframework

.

data

.

mongodb

.

repository

.

MongoRepository

;

public

interface

LocationRepository

extends

MongoRepository

<

Location

,

String

>

{

List

findByPositionNear

(

Point

p

,

Distance

d

)

;

List

findByPositionWithin

(

Box

b

)

;

}

然后在test类中引用此类即可,MongoRepository实现了最基本的增删改查的功能,要想增加额外的查询方法,可以按照以下规则定义接口的方法.

自定义查询方法,格式为findBy+字段名+方法名,方法传进的参数即字段的值,此外还支持分页查询,通过传进一个Pageable对象会返回Page集合.

原理相信大家也很清楚,即aop,细节就不说拉.

小提示

near与within方法区别,near方法查询后会对结果集对distance进行排序且有大小限制,而within是无序的也无大小限制.

如果大家有新发现,也可回帖,我会及时补充.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/365527.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

让height: 100%生效

html&#xff1a; <body><div class"box"></div> </body> css&#xff1a; .box{position: fixed;// 使用fixed定位width: 100%;height: 100%;background: orange;} 补充&#xff1a; &#xff08;父元素不设高度&#xff0c;如何让子元素高…

hash

HashSet Set接口&#xff0c;元素不能重复&#xff0c;要确保重写hashCode&#xff08;&#xff09;方法和equals&#xff08;&#xff09;方法&#xff0c;这样才能比较对象的值是否相等HashMap Map接口&#xff0c;key可为null线程安全ConcurrentHashMap&#xff08;Map接口&…

推土机:将JAXB对象映射到业务/域对象

Dozer是开放源代码&#xff08; Apache 2许可 &#xff09;“ Java Bean到Java Bean映射器&#xff0c;可将数据从一个对象递归复制到另一个对象”。 正如从其主页上的描述所描述的那样&#xff0c;它用于映射两个JavaBeans实例&#xff0c;以在实例之间进行自动数据复制。 尽管…

openssl不是内部或外部命令_OpenSSL新架构蓝图

概述日前OpenSSL官网公布了未来OpenSSL的架构蓝图。作为战略性的架构目标&#xff0c;需要大量的版本迭代本文档概述了OpenSSL战略架构。它需要多个版本的迭代从目前最新的版本1.1开始直到3.0甚至是4.0最终实现。由于版本架构变动非常大&#xff0c;涉及大量的变化和迭代&#…

eclipse安装Hadoop-0.20.2插件

因为在使用Hadoop-0.20.2这个古董&#xff0c;需要使用它自带的eclipse插件&#xff0c;而我最初安装的是现代的eclipse4.10.0。 在经历两天&#xff0c;以及以下种种尝试之后&#xff0c;均以失败告终&#xff1a; 1.网上找适合的版本&#xff0c;据说有人编译好的hadoop-0.20…

java setcontenttype_response.setContentType()在Java过滤器中重置

我试图在过滤器中将压缩文件的内容类型设置为正确的mime类型&#xff0c;而不是application / gzip。这是我的一些代码&#xff1a;public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, Serv…

休眠事实:始终检查Criteria API SQL查询

Criteria API对于动态构建查询非常有用&#xff0c;但这是我使用它的唯一用例。 每当您有一个带有N个过滤器且可以以任意M个组合到达的UI时&#xff0c;都有一个API动态构造查询是有意义的&#xff0c;因为串联字符串始终是我所不愿使用的路径。 问题是&#xff0c;您是否知道…

JS基础(一)

1、JS脚本放置位置 页面内的JS脚本中&#xff0c;各种公共函数和变量应放在head标签之间&#xff0c;而将页面加载期间执行的代码、dom对象初始化以及与dom相关的全局引用赋值操作放在body标签之间&#xff0c;如果没有特殊要求&#xff0c;不妨放在body标签之前。 2、js命名…

treegrid,可以展开的jqgrid树

效果图 html部分 <div class"padding20 bgWhite marginTop20"> <div class"cus-grid row" id"grid-wrap"> <div class"col-lg-12"> <table id"list2"></table> …

winfrom软件开发汽车测试_ETci — 全自动软件测试调度(持续集成)平台

ETci 提供了编译- 测试- 发布解决方案&#xff0c;包括&#xff1a;自动提取配置库代码进行自动构建, 自动调度静态测试工具(如QAC)进行静态测试&#xff0c;自动调度单元测试工具(如Tessy)开展动态测试&#xff0c;自动调度HIL 自动化测试系统等。使得开发、测试团队在软件开发…

LVS负载均衡群集(NAT)

----构建NAT模式的LVS群集----------client---------------LVS----------------WEB1-----------WEB2------------NFS----2.2.2.100 eth0:2.2.2.1 eth1:192.168.1.1 192.168.1.10 192.168.1.20 192.168.1.200 一、准备工作1、添加模块[rootlocalhost ~]# modprobe ip_vs[rootloc…

查询锁表并解锁

查询锁定的表:SELECT l.session_id sid, s.serial#, l.locked_mode, l.oracle_username, l.os_user_name, s.machine, s.terminal, o.object_name, s.logon_time FROM v$locked_object l, all_objects o, v$session s WHERE l.object_id o.object_id AND l.session_id s.sid …

在POJO中使用ThreadLocal的Java嵌套事务

大多数嵌套事务是使用EJB实现的&#xff0c;现在我们尝试在POJO上实现嵌套事务。 在这里&#xff0c;我们使用了ThreadLocal的功能。 了解嵌套事务 事务可以嵌套在另一个内部。 因此&#xff0c;内部事务或外部事务可以回滚或提交&#xff0c;而不会影响其他事务。 创建新事务…

HTML存储详解

和大家一起先来了解一下H5之前的存储方式&#xff1a; cookies的诞生&#xff1a; http请求头上带着数据大小只能为4K主Domain的污染 下面是百度的一些Cookies HTTP中带√的表示&#xff0c;只能被服务器端修改的数据&#xff0c;一般用来存储身份验证等信息 cookies造成了…

java 导入excel到数据库_java导入excel到数据库

1.[文件] jxl-2.6.jar ~ 645KB 下载(124)2.[代码]将excel表格内容解析为listpackage com.utils;import java.io.File;import java.util.ArrayList;import java.util.List;import jxl.Sheet;import jxl.Workbook;import com.jiumai.shgold.model.aboutas.AboutAs;public cla…

智课雅思词汇---十六、前缀hyper和hypo是反义词

智课雅思词汇---十六、前缀hyper和hypo是反义词 一、总结 一句话总结&#xff1a; hypertension 过度紧张&#xff1b;高血压&#xff08;hypertension紧张&#xff09; hypotension 低血压 1、epi是什么意思&#xff1f; 前缀&#xff1a;ep-, epi-, eph- 【词根含义】&#x…

python神经网络库 keras_在Python和R中使用Keras和Tensorflow进行深度学习

了解TensorFlow 2.0和Keras在Python和R中的深度学习并构建神经网络深入了解人工神经网络(ANN)和深度学习了解Keras和Tensorflow库的用法了解适用人工神经网络(ANN)的业务场景使用Python和R构建人工神经网络(ANN)使用人工神经网络(ANN)进行预测完成本课程后&#xff0c;您将能够…

springboot 工程启动报错之Consider defining a bean of type ‘XXX’ in your configuration.

一、前言&#xff1a; 使用springboot自动注入的方式搭建好了工程&#xff0c;结果启动的时候报错了&#xff01;&#xff01;&#xff01;&#xff0c;错误如下图&#xff1a; Description:Field userEntityMapper in com.xxx.xxx.service.UserService required a bean of typ…

结合使用嵌入式Tomcat和Maven tomcat插件

使用Eclipse WTP开发Java Web应用程序时&#xff0c;我们需要在计算机中安装tomcat才能执行该应用程序。 如果在项目上使用Maven&#xff0c;则可以使用tomcat插件运行嵌入式tomcat安装并测试应用程序。 如下所示&#xff0c;这非常简单。 OBS&#xff1a;要执行本文中给出的…

java 自定义报表_灵活数据分析 | 自定义数据分析_集力数据系统平台_Java报表系统软件...

灵活数据分析集力数据系统数据分析是立足于让终端用户即使不懂专业计算机技术也能即时定义报表和分析数据的工具。用户只需关心业务需要&#xff0c;无需关心技术实现&#xff0c;通过拖拖拽拽、点点选选即可轻松制作列表式报表、分组报表、交叉报表、自由报表、组合报表等并进…