TA的每日心情 衰 2021-2-2 11:21
签到天数: 36 天
[LV.5]常住居民I
spring 4 整合MongoDB详细讲解项目源码 / s% R0 c2 t" p, ?
Mongo DB 是目前在IT行业非常流行的一种非关系型数据库(NoSql),其灵活的数据存储方式备受当前IT从业人员的青睐。Mongo DB很好的实现了面向对象的思想(OO思想),在Mongo DB中 每一条记录都是一个Document对象。Mongo DB最大的优势在于所有的数据持久操作都无需开发人员手动编写SQL语句,直接调用方法就可以轻松的实现CRUD操作。+ ]4 [' ~( Q8 ]$ p" V5 {% G
3 z' b' K3 _ S" z NoSQL数据库与传统的关系型数据库相比,它具有操作简单、完全免费、源码公开、随时下载等特点,并可以用于各种商业目的。这使NoSQL产品广泛应用于各种大型门户网站和专业网站,大大降低了运营成本。
# V1 T4 v) M3 x( s ` + ~, Y/ V& S7 |- f
Mongo DB 数据库自行搭建、也可以暂用地址见mongo-config.xml配置 可以进行增删查改。- k) V' k' g+ o) J7 p
+ R, }& s! h# K# a" l
环境配置: myeclipse 8.6 、mongodb 3.0 、spring 4.0.6+ s. D* H" }$ h! i" K
* N3 m: j4 @" ]. y+ ^" K8 W0 M6 c 8 `: R: K8 g6 @/ K
项目采用springmvc 结构。
- k1 l* b, h* j0 U. O! r3 F$ O) N 所需JAR包:
, W- O5 o- \( u" n7 D( i
' Z* F; I3 T* v( n. v% d- ]0 S
- N5 Y8 x }" l" C% W% ~& ~
( _; Y' Z( l* H2 Q3 j applicationContext.xml配置:
( ?. @6 W# J- g' C& y <?xml version="1.0" encoding="UTF-8"?>
$ N7 k% F) \* u# ^6 ?0 {) F <beans xmlns="http://www.springframework.org/schema/beans"
4 }5 d0 @7 X+ I' |1 l xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" b# A! I# v a- N
xmlns:p="http://www.springframework.org/schema/p"
2 Q9 e0 b2 [1 x! R2 s& f( k xmlns:context="http://www.springframework.org/schema/context" ; e3 u2 X7 a6 o+ _0 \' P
xmlns:mvc="http://www.springframework.org/schema/mvc"
! C- I) g+ z( Z0 o xsi:schemaLocation="http://www.springframework.org/schema/mvc
0 T- Q3 }2 o2 ^6 |* \% i http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd ' K" I q* N0 l" X7 L6 W- |
http://www.springframework.org/schema/beans
' v7 o2 S. j/ a' j; y http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 5 D. U- ]9 _! _, {$ [; h+ h! p( [
http://www.springframework.org/schema/context
2 F" I( W$ b( C3 C8 ]$ O I2 i http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 3 [, a! C8 G6 e$ Q% r: X; y( ~9 h8 |
<context:component-scan base-package="com.mongodb.service" />+ ~$ u2 y& L- R* W
<import resource="mongo-config.xml"/>+ t4 | W* X' Y) z1 n) T
</beans> 复制代码 mongo-config.xml配置:4 b& R) D3 ^; u9 J2 u5 A
<?xml version="1.0" encoding="UTF-8"?> ) `8 c, O# O; j+ i
<beans xmlns="http://www.springframework.org/schema/beans"
. s. I7 _7 V# H: ]+ D xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + [7 A- ?# b: }9 @
xmlns:p="http://www.springframework.org/schema/p"
: y8 \( i, O3 o/ ]" r! \% D5 x xmlns:mongo="http://www.springframework.org/schema/data/mongo"
/ L/ t* A" D, X4 D- i1 m7 r xsi:schemaLocation="http://www.springframework.org/schema/beans
# O+ X T4 k( S7 v/ K2 P http://www.springframework.org/schema/beans/spring-beans-3.0.xsd " G0 }- U2 ?' O, b7 z% i
http://www.springframework.org/schema/data/mongo
/ y2 E3 \) \# f3 D http://www.springframework.org/schema/data/mongo/spring-mongo.xsd8 H9 }+ S5 y3 v( E& a0 Y) B
http://www.springframework.org/schema/data/repository
4 t, [; J4 k7 k0 y http://www.springframework.org/schema/data/repository/spring-repository-1.5.xsd">
3 v7 Q3 {% Q& j, S, [$ u2 }
q* ` i8 G1 Y5 M6 L6 j, c. U& x <mongo:mongo host="121.42.26.72" port="12345"/>
G& \7 ]. c* `$ ^, M" _ . e7 E% V$ S1 c2 ]
<!-- Offers convenience methods and automatic mapping between MongoDB JSON documents and your domain classes. --> * Y/ D4 I) p+ j! T" e
<bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate"> 1 `+ e1 l- \* l8 o0 _2 T
<constructor-arg ref="mongo"/> - e8 o" Y3 Y! w6 j( P) K
<constructor-arg name="databaseName" value="itstyle"/> / H N4 I& X2 l( o5 ^
</bean> 3 `; g0 H. s+ `. w$ U) F2 u
% J1 Z V' i3 ~! T, U </beans> 复制代码 " V0 o d n/ I2 R. E
spring-servlet.xml配置:. c& g8 P0 g* j& I: X
9 _! _' ?8 D+ c, ? <?xml version="1.0" encoding="UTF-8"?> * t& d# I) A+ H. I/ A5 X
<beans xmlns="http://www.springframework.org/schema/beans" 8 E$ _+ K% X* c
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" * P7 }' s0 O4 X( D! W* x. I
xmlns:p="http://www.springframework.org/schema/p"
0 e0 p$ B7 f' [ xmlns:mvc="http://www.springframework.org/schema/mvc"
n; N$ l& H5 C7 c4 ~ xmlns:context="http://www.springframework.org/schema/context" & Y5 C8 {, q. S: A0 d
xmlns:mongo="http://www.springframework.org/schema/data/mongo" 7 O6 L5 S V$ c6 _8 @% \
xsi:schemaLocation="http://www.springframework.org/schema/beans
3 t9 p0 E O4 D- v http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
9 B; ^3 t, C4 a8 i; R9 v http://www.springframework.org/schema/context
9 \; V6 I$ l+ n- U. s( N: X http://www.springframework.org/schema/context/spring-context-3.0.xsd
6 f+ D1 w" @, b http://www.springframework.org/schema/data/mongo 8 D. U2 H4 ~5 T+ ^5 O/ a; \: M
http://www.springframework.org/schema/data/mongo/spring-mongo.xsd
& o+ ~. L+ c9 R. d7 \ http://www.springframework.org/schema/mvc / ?( ~. X* h* [8 H1 H5 e: I
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">9 |, v" A% ^6 s" Y
, M! h& T( r) }3 u! O% P! w* G <!-- Scans the classpath for annotated components that will be auto-registered as Spring beans.For example @Controller and @Service . Make sure to set the correct base-package--> ( r3 e$ U: P" @% Q
<context:component-scan base-package="com.mongodb.controller" />
# |. Y k3 |' F; T. g3 X
5 f* f D! c; r" ~ <!-- Configures the annotation-driven Spring MVC Controller programming model.Note that, with Spring 3.0, this tag works in Servlet MVC only! --> : e* z* j H" U" R9 Y& j8 P7 h
<mvc:annotation-driven /> R5 _0 I- @$ A8 ^: Y" k
. J: D/ `2 J6 u9 x! Z, Q! c' ?
<!-- Declare a view resolver -->
, K4 |8 u8 Y. _3 l9 @# q5 S <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"
% v9 v2 ]6 G3 v8 h p:prefix="/users/" p:suffix=".jsp" />
: c; C6 J: g( `4 G & {# E1 m, x' h$ o& K6 p: S! z/ z l
% }* c. [9 w: O; q </beans> 复制代码 UserServiceImpl 基本实现代码:package com.mongodb.service;& Q g# l8 V: F B
import java .util.List;
+ S- M( T* q, G o import org.springframework.beans.factory.annotation.Autowired;% Y8 e5 C# Q5 }2 _' L7 _" C
import org.springframework.data.mongodb.core.MongoOperations;; u5 q) p; z. v; U/ f9 ~
import org.springframework.data.mongodb.core.query.Criteria; q/ c" d$ j% a) i' H4 A8 u: C5 g
import org.springframework.data.mongodb.core.query.Query;- Z& U" ~1 |7 H6 a7 ~. P4 O
import org.springframework.data.mongodb.core.query.Update;
: Q2 b1 U% @$ t- e# \ import org.springframework.stereotype.Service;8 r$ n, y( h' e# e
import com.mongodb.domain.Users;
: A! x0 c7 J2 E {" C. e) I @Service(value = "userService")
- B( {+ K5 R9 P public class UserServiceImpl implements UserService{ 9 V% o2 J6 W. v Y3 q
private static String USER_COLLECTION = "users"; 3 ^, [1 `7 h k( h# B, O
@Autowired
# ?8 }; h1 p/ w MongoOperations mongoTemplate;
% P- L3 }6 @7 o3 K0 w8 E! J3 E public void saveUser(Users users){
+ ~. z5 s) _6 | mongoTemplate.save(users, USER_COLLECTION);
6 v3 `5 P: X# y }
- t7 g/ ?6 |/ e1 s4 s2 _) Z% Y8 C public Users findUserByName(String name){) Y: V+ W" E' W+ K3 f
return mongoTemplate.findOne(new Query(Criteria.where("name").is(name)), Users.class, USER_COLLECTION);
8 X& a" z1 h( P8 d" b- y% ~ }4 \- ^6 M9 v% Z
public void removeUser(String name) {9 P8 Z5 T" ]: ?
mongoTemplate.remove(new Query(Criteria.where("name").is(name)),Users.class,USER_COLLECTION);
& f5 h9 w9 w4 e- e. e& f }
' Y* M% m" h5 g% a+ _ public void updateUser(String name,String key,String value) {
1 u$ M9 i3 ^+ L+ Y& _! ] mongoTemplate.updateFirst(new Query(Criteria.where("name").is(name)), Update.update(key, value), Users.class); ?1 h$ x* U6 U) C+ R# y) _
! C; d: F3 B/ m
}1 b. g& b6 w& k3 y
public List<Users> listUser() {
+ Y4 n# ]% W3 x v7 _: m7 e9 v8 x return mongoTemplate.findAll(Users.class);
' L% ] m! @; Q' o" m9 L }7 x; O, n- E/ p6 U9 x
}6 r: }) F* H0 @7 z
复制代码 ; |1 a$ h Y/ \" E5 w6 z7 I7 Q
! @" h! R. A6 D% J f2 i- a 演示地址:http://121.42.26.72:8080/SpringMongod - m# v1 ^% i6 K* e! G- }$ A( ^
1 A2 j' ]5 O! K0 L8 }0 i! u1 j9 i 项目下载地址:Spring4 整合MongoDB详细讲解项目源码
; w, P/ Z- [9 w4 e# ~ ! ^2 c# M+ ~( W' U
解压码:www.52itstyle.com q) B4 V' F, Y1 t a |
科帮网 1、本主题所有言论和图片纯属会员个人意见,与本社区立场无关2、本站所有主题由该帖子作者发表,该帖子作者与科帮网 享有帖子相关版权3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者和科帮网 的同意4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责6、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意7、科帮网 管理员和版主有权不事先通知发贴者而删除本文
JAVA爱好者①群:
JAVA爱好者②群:
JAVA爱好者③ :