我的日常

登录/注册
您现在的位置:论坛 盖世程序员(我猜到了开头 却没有猜到结局) 项目源码 > Spring4 整合MongoDB详细讲解项目源码
总共48086条微博

动态微博

查看: 3775|回复: 3

Spring4 整合MongoDB详细讲解项目源码

[复制链接]
admin    

1244

主题

544

听众

1万

金钱

管理员

  • TA的每日心情

    2021-2-2 11:21
  • 签到天数: 36 天

    [LV.5]常住居民I

    管理员

    跳转到指定楼层
    楼主
    发表于 2015-03-10 20:24:53 |只看该作者 |倒序浏览
    spring4 整合MongoDB详细讲解项目源码- [* L1 a" v! ?( ~% K
    Mongo DB 是目前在IT行业非常流行的一种非关系型数据库(NoSql),其灵活的数据存储方式备受当前IT从业人员的青睐。Mongo DB很好的实现了面向对象的思想(OO思想),在Mongo DB中 每一条记录都是一个Document对象。Mongo DB最大的优势在于所有的数据持久操作都无需开发人员手动编写SQL语句,直接调用方法就可以轻松的实现CRUD操作。5 c+ F6 C. L4 e6 {. Z
    0 d9 C0 S+ @4 }: `1 K
    NoSQL数据库与传统的关系型数据库相比,它具有操作简单、完全免费、源码公开、随时下载等特点,并可以用于各种商业目的。这使NoSQL产品广泛应用于各种大型门户网站和专业网站,大大降低了运营成本。& |3 C8 i4 H5 F+ G  a) O
    + {( a0 Q9 |, J5 S; x: M. ~9 R
    Mongo DB 数据库自行搭建、也可以暂用地址见mongo-config.xml配置 可以进行增删查改。
    3 n1 W- s, G: Q) I( b- l. P) t& J
    环境配置: myeclipse 8.6  、mongodb 3.0  、spring 4.0.6
    5 [/ g2 R7 s: Y4 G
    , s1 o+ S, d" r; O; L' j2 C8 {7 {) s
    项目采用springmvc 结构。
    0 v: ]* o. f0 j2 P8 v所需JAR包:
    ! y) [( s1 C3 C- g  c+ o# `) s % C' D  I/ i9 N9 q) J# m+ p& x

    7 L  O# C7 `9 r/ c; F& i( L: O  u' P0 Q. T; S
    applicationContext.xml配置:$ I/ H8 _! \. t5 r: x7 z. [
    1. <?xml version="1.0" encoding="UTF-8"?>  
      % s& M" e1 G3 G+ F' S( _
    2. <beans xmlns="http://www.springframework.org/schema/beans"  - }9 h6 p7 H% Q# _, H) r
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
      ) v  ^/ ~" \2 M' M
    4.     xmlns:p="http://www.springframework.org/schema/p"  1 V7 A$ Z5 X! B( ^2 ~' Q1 P1 K
    5.     xmlns:context="http://www.springframework.org/schema/context"  
      3 g  c: D) q1 a$ M, b9 {
    6.     xmlns:mvc="http://www.springframework.org/schema/mvc"  7 F4 `9 y! Y  z
    7.     xsi:schemaLocation="http://www.springframework.org/schema/mvc   
      9 M+ G* g( Y/ Z. x
    8.         http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd  % ^" o" @9 h. g* z4 `3 v- D. z1 P
    9.         http://www.springframework.org/schema/beans 8 M3 O, V3 k. ^, l
    10.         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  # ^  ~0 X! w% D& m1 \8 `) R
    11.         http://www.springframework.org/schema/context
        X2 k. p7 \" q  X; F
    12.         http://www.springframework.org/schema/context/spring-context-3.0.xsd"> ' S; {9 Y# k) I, m4 ?) Y  O: T
    13.      <context:component-scan base-package="com.mongodb.service" />
      * U+ I3 Z1 c9 _" r
    14.      <import resource="mongo-config.xml"/>
      ) ?7 q8 H$ Q) @9 B8 V
    15. </beans>
    复制代码
    mongo-config.xml配置:, T4 K" F! l- T/ [. b
    1. <?xml version="1.0" encoding="UTF-8"?>  
      ) f4 k0 ~! k: s; w6 @
    2. <beans xmlns="http://www.springframework.org/schema/beans"  : W# l! {8 C* ^/ V- m; m- t* h3 Q9 J
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
      4 O+ p# e& F1 J9 j# v2 d
    4.     xmlns:p="http://www.springframework.org/schema/p"   
      $ L0 n( r& M1 V0 C4 |3 \' w
    5.     xmlns:mongo="http://www.springframework.org/schema/data/mongo"  + k1 d$ s3 L* J3 H2 ?( p+ |
    6.     xsi:schemaLocation="http://www.springframework.org/schema/beans   ) l1 s, p7 }- S( T8 i
    7.             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
      ' Y! x7 _# X# v; }! t
    8.             http://www.springframework.org/schema/data/mongo  
      - O5 G7 h* T- [! }" }1 w* ?" Q
    9.             http://www.springframework.org/schema/data/mongo/spring-mongo.xsd6 C, i: M1 V. y
    10.             http://www.springframework.org/schema/data/repository
      6 f. S' @' b1 h% T$ _, i
    11.             http://www.springframework.org/schema/data/repository/spring-repository-1.5.xsd">        
      * b& {6 F; @# T* D$ {) Q
    12.    0 L/ B8 @) r0 ?  W
    13.     <mongo:mongo host="121.42.26.72" port="12345"/>  1 p  }  |& a& X* F8 [
    14.       
      . q8 e2 h% Q! }
    15.     <!-- Offers convenience methods and automatic mapping between MongoDB JSON documents and your domain classes. -->  % k# F5 K% B. H
    16.     <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">  9 J  e5 ?& F% t2 Q# e% j' B
    17.             <constructor-arg ref="mongo"/>  2 _4 _+ `* u, e$ K- h% Y
    18.             <constructor-arg name="databaseName" value="itstyle"/>  1 _. E$ R; r$ \
    19.     </bean>  
      8 b( o4 E/ e# M3 l9 B- D
    20.       
      . ~+ Q& t8 _3 B& t4 b+ ^1 X
    21. </beans>
    复制代码
    9 W0 \, i; E( P+ l8 P5 R$ B: W
    spring-servlet.xml配置:
    5 B+ \% M( G& j/ ]7 z2 o( B/ K" R% \" K" ]3 N1 g
    1. <?xml version="1.0" encoding="UTF-8"?>  
      # Y7 z, U( p; s" a$ v7 `
    2. <beans xmlns="http://www.springframework.org/schema/beans"  0 ^3 A* r0 y) G
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
      4 I5 y8 M& H8 a/ ], c
    4.     xmlns:p="http://www.springframework.org/schema/p"  " Y3 o6 _7 l% }9 X
    5.     xmlns:mvc="http://www.springframework.org/schema/mvc" ! a( y, S7 D7 _2 T3 Q+ i* P0 u
    6.     xmlns:context="http://www.springframework.org/schema/context"  $ k+ e5 @8 p7 g; ?3 ]$ c- j9 l
    7.     xmlns:mongo="http://www.springframework.org/schema/data/mongo"  
      3 w9 s! M8 A* I
    8.     xsi:schemaLocation="http://www.springframework.org/schema/beans   3 g4 `/ u5 k, }, I! x% T
    9.             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd ) E/ ~# K* U, z. j
    10.             http://www.springframework.org/schema/context
      3 E4 w% v, C1 M& F3 Q4 g
    11.             http://www.springframework.org/schema/context/spring-context-3.0.xsd ) R: D0 }! O" h1 [1 O8 I- |7 J
    12.             http://www.springframework.org/schema/data/mongo  
      2 u  ~7 V/ V% @( a6 ]) @' R. g
    13.             http://www.springframework.org/schema/data/mongo/spring-mongo.xsd
      0 ^- h! u. t0 _% K
    14.             http://www.springframework.org/schema/mvc          Z8 c6 P# p* C, W; C7 g0 j1 @
    15.             http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">6 O# d2 W9 p! ^2 |0 Z( D
    16.         
      $ R' L% m) m3 I0 i1 I2 B3 s
    17.     <!-- 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-->  
        y! Z! s! f- D% K* Q) F
    18.     <context:component-scan base-package="com.mongodb.controller" />   / e- L# ?& x! b6 \6 C- |
    19.       
      & q0 `# y, x  X/ ^$ h! [
    20.     <!-- Configures the annotation-driven Spring MVC Controller programming model.Note that, with Spring 3.0, this tag works in Servlet MVC only!  -->  
      1 E- I" s' H7 T( f/ D* P
    21.     <mvc:annotation-driven />   3 d: R. {$ n+ V! q8 E
    22.    
      6 z/ {% H9 n) p. O- B
    23.     <!-- Declare a view resolver -->  ) W; h3 o  C$ U# J4 u6 \6 n! G
    24.     <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"   $ t3 d" [+ a! d
    25.             p:prefix="/users/" p:suffix=".jsp" />  
      0 s3 ~6 q+ x2 |2 a& T, N5 ~
    26.             
      - Z, b9 Q1 @& H6 w4 l2 t
    27.    
      , c3 Q3 C7 U# `% K% @
    28. </beans>
    复制代码
    UserServiceImpl 基本实现代码:
    1. package com.mongodb.service;
      ; F/ T3 R* x3 w5 ?0 A! F% e
    2. import java.util.List;
      9 y! i! j4 F# S2 O6 M6 j
    3. import org.springframework.beans.factory.annotation.Autowired;) G8 [% v3 N4 b- N
    4. import org.springframework.data.mongodb.core.MongoOperations;' d7 z  u$ z1 D
    5. import org.springframework.data.mongodb.core.query.Criteria;, `' n9 k1 ?8 T0 Z* F6 }
    6. import org.springframework.data.mongodb.core.query.Query;
      $ x8 N+ ?. f) m7 Y
    7. import org.springframework.data.mongodb.core.query.Update;
      " O4 ~+ p3 t# z8 n  _" c9 D' i
    8. import org.springframework.stereotype.Service;: ?/ G, [- A7 [7 M
    9. import com.mongodb.domain.Users;
        S4 C& W9 x0 b
    10. @Service(value = "userService")   
      ; ?, b6 Z! |+ j+ T
    11. public class UserServiceImpl implements UserService{ ; w" D6 N! w- G
    12.     private static String USER_COLLECTION = "users"; $ g9 b! P! P( ]  k6 t
    13.     @Autowired  0 ~# n) A: f+ @
    14.     MongoOperations mongoTemplate; 1 ?5 \! N3 m4 |$ W0 \: g
    15.        public void saveUser(Users users){            ! R9 [: S; c, N2 m! ?
    16.         mongoTemplate.save(users, USER_COLLECTION);            
        A7 j, Q1 i! o! @* ]8 p3 }
    17.     }        % \/ R/ t7 S9 l* {+ R
    18.     public Users findUserByName(String name){
      ) V" B" J% [! T
    19.         return mongoTemplate.findOne(new Query(Criteria.where("name").is(name)), Users.class, USER_COLLECTION);  4 x+ c% {$ p; z  [. @( [; I
    20.     }
      & u7 G" J7 e1 J) `9 ^+ z5 j6 F+ J
    21.         public void removeUser(String name) {4 d/ Z. [, L9 x9 F$ `
    22.                 mongoTemplate.remove(new Query(Criteria.where("name").is(name)),Users.class,USER_COLLECTION);) `7 @9 t# D, A# `+ X
    23.         }
        C& C, J4 J1 X# f7 A& K5 T
    24.         public void updateUser(String name,String key,String value) {, ]1 P$ I) R2 L: [3 j1 b
    25.                 mongoTemplate.updateFirst(new Query(Criteria.where("name").is(name)), Update.update(key, value), Users.class);
      ! @9 J1 m" t3 O# N4 _3 g
    26.                
      + V& U' {2 `) U9 v  ^1 d; u) y
    27.         }
      # K; ^7 Z5 Q- C0 e' U' A( u
    28.         public List<Users> listUser() {
      0 ~. L2 k: S  c8 k; j
    29.                 return mongoTemplate.findAll(Users.class);' `# P% n5 N! z/ w  X' Q; g- A
    30.         }
      7 t5 x5 i5 O- N( D& z3 X
    31. }: R- w3 I' _; ~2 y! X+ |1 C" B
    复制代码
    : s7 r4 k0 y" T' M# }

    + J& J% A( U7 _$ o  Q& W演示地址:http://121.42.26.72:8080/SpringMongod3 ?, d7 P8 Y7 b/ {( _! C: ]6 m

    & R$ s) n9 s, b) b7 x+ \9 c项目下载地址:Spring4 整合MongoDB详细讲解项目源码
    ' T8 y% h: v* A& l9 h6 }3 r6 R3 y$ s/ r$ N0 u9 W2 T% E
    解压码:www.52itstyle.com* d! Y. S: ~: ?! V, z9 P/ G

    科帮网 1、本主题所有言论和图片纯属会员个人意见,与本社区立场无关
    2、本站所有主题由该帖子作者发表,该帖子作者与科帮网享有帖子相关版权
    3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者和科帮网的同意
    4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任
    5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
    6、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
    7、科帮网管理员和版主有权不事先通知发贴者而删除本文


    JAVA爱好者①群:JAVA爱好者① JAVA爱好者②群:JAVA爱好者② JAVA爱好者③ : JAVA爱好者③

    admin    

    1244

    主题

    544

    听众

    1万

    金钱

    管理员

  • TA的每日心情

    2021-2-2 11:21
  • 签到天数: 36 天

    [LV.5]常住居民I

    管理员

    沙发
    发表于 2015-03-10 20:46:22 |只看该作者
    解压码:本站网址               
    回复

    使用道具 举报

    7

    主题

    3

    听众

    383

    金钱

    版主

    该用户从未签到

    板凳
    发表于 2015-03-10 21:09:32 |只看该作者

    点评

    admin  你妹的 小斑竹  发表于 2015-3-10 21:11 回复
    回复

    使用道具 举报

    2

    主题

    0

    听众

    128

    金钱

    三袋弟子

    该用户从未签到

    地板
    发表于 2015-05-04 00:46:42 |只看该作者
    谢谢分享$ w% Z: }1 c5 }% q. w1 U6 j2 r
    回复

    使用道具 举报

    快速回复
    您需要登录后才可以回帖 登录 | 立即注册

       

    关闭

    站长推荐上一条 /1 下一条

    发布主题 快速回复 返回列表 联系我们 官方QQ群 科帮网手机客户端
    快速回复 返回顶部 返回列表