我的日常

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

动态微博

查看: 3929|回复: 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详细讲解项目源码/ 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" zNoSQL数据库与传统的关系型数据库相比,它具有操作简单、完全免费、源码公开、随时下载等特点,并可以用于各种商业目的。这使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 c8 `: 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 japplicationContext.xml配置:
    ( ?. @6 W# J- g' C& y
    1. <?xml version="1.0" encoding="UTF-8"?>  
      $ N7 k% F) \* u# ^6 ?0 {) F
    2. <beans xmlns="http://www.springframework.org/schema/beans"  
      4 }5 d0 @7 X+ I' |1 l
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    b# A! I# v  a- N
    4.     xmlns:p="http://www.springframework.org/schema/p"  
      2 Q9 e0 b2 [1 x! R2 s& f( k
    5.     xmlns:context="http://www.springframework.org/schema/context"  ; e3 u2 X7 a6 o+ _0 \' P
    6.     xmlns:mvc="http://www.springframework.org/schema/mvc"  
      ! C- I) g+ z( Z0 o
    7.     xsi:schemaLocation="http://www.springframework.org/schema/mvc   
      0 T- Q3 }2 o2 ^6 |* \% i
    8.         http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd  ' K" I  q* N0 l" X7 L6 W- |
    9.         http://www.springframework.org/schema/beans
      ' v7 o2 S. j/ a' j; y
    10.         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  5 D. U- ]9 _! _, {$ [; h+ h! p( [
    11.         http://www.springframework.org/schema/context
      2 F" I( W$ b( C3 C8 ]$ O  I2 i
    12.         http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 3 [, a! C8 G6 e$ Q% r: X; y( ~9 h8 |
    13.      <context:component-scan base-package="com.mongodb.service" />+ ~$ u2 y& L- R* W
    14.      <import resource="mongo-config.xml"/>+ t4 |  W* X' Y) z1 n) T
    15. </beans>
    复制代码
    mongo-config.xml配置:4 b& R) D3 ^; u9 J2 u5 A
    1. <?xml version="1.0" encoding="UTF-8"?>  ) `8 c, O# O; j+ i
    2. <beans xmlns="http://www.springframework.org/schema/beans"  
      . s. I7 _7 V# H: ]+ D
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   + [7 A- ?# b: }9 @
    4.     xmlns:p="http://www.springframework.org/schema/p"   
      : y8 \( i, O3 o/ ]" r! \% D5 x
    5.     xmlns:mongo="http://www.springframework.org/schema/data/mongo"  
      / L/ t* A" D, X4 D- i1 m7 r
    6.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
      # O+ X  T4 k( S7 v/ K2 P
    7.             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  " G0 }- U2 ?' O, b7 z% i
    8.             http://www.springframework.org/schema/data/mongo  
      / y2 E3 \) \# f3 D
    9.             http://www.springframework.org/schema/data/mongo/spring-mongo.xsd8 H9 }+ S5 y3 v( E& a0 Y) B
    10.             http://www.springframework.org/schema/data/repository
      4 t, [; J4 k7 k0 y
    11.             http://www.springframework.org/schema/data/repository/spring-repository-1.5.xsd">        
      3 v7 Q3 {% Q& j, S, [$ u2 }
    12.    
        q* `  i8 G1 Y5 M6 L6 j, c. U& x
    13.     <mongo:mongo host="121.42.26.72" port="12345"/>  
        G& \7 ]. c* `$ ^, M" _
    14.       . e7 E% V$ S1 c2 ]
    15.     <!-- Offers convenience methods and automatic mapping between MongoDB JSON documents and your domain classes. -->  * Y/ D4 I) p+ j! T" e
    16.     <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">  1 `+ e1 l- \* l8 o0 _2 T
    17.             <constructor-arg ref="mongo"/>  - e8 o" Y3 Y! w6 j( P) K
    18.             <constructor-arg name="databaseName" value="itstyle"/>  / H  N4 I& X2 l( o5 ^
    19.     </bean>  3 `; g0 H. s+ `. w$ U) F2 u
    20.       
      % J1 Z  V' i3 ~! T, U
    21. </beans>
    复制代码
    " V0 o  d  n/ I2 R. E
    spring-servlet.xml配置:. c& g8 P0 g* j& I: X

    9 _! _' ?8 D+ c, ?
    1. <?xml version="1.0" encoding="UTF-8"?>  * t& d# I) A+ H. I/ A5 X
    2. <beans xmlns="http://www.springframework.org/schema/beans"  8 E$ _+ K% X* c
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   * P7 }' s0 O4 X( D! W* x. I
    4.     xmlns:p="http://www.springframework.org/schema/p"  
      0 e0 p$ B7 f' [
    5.     xmlns:mvc="http://www.springframework.org/schema/mvc"
        n; N$ l& H5 C7 c4 ~
    6.     xmlns:context="http://www.springframework.org/schema/context"  & Y5 C8 {, q. S: A0 d
    7.     xmlns:mongo="http://www.springframework.org/schema/data/mongo"  7 O6 L5 S  V$ c6 _8 @% \
    8.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
      3 t9 p0 E  O4 D- v
    9.             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      9 B; ^3 t, C4 a8 i; R9 v
    10.             http://www.springframework.org/schema/context
      9 \; V6 I$ l+ n- U. s( N: X
    11.             http://www.springframework.org/schema/context/spring-context-3.0.xsd
      6 f+ D1 w" @, b
    12.             http://www.springframework.org/schema/data/mongo  8 D. U2 H4 ~5 T+ ^5 O/ a; \: M
    13.             http://www.springframework.org/schema/data/mongo/spring-mongo.xsd
      & o+ ~. L+ c9 R. d7 \
    14.             http://www.springframework.org/schema/mvc        / ?( ~. X* h* [8 H1 H5 e: I
    15.             http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">9 |, v" A% ^6 s" Y
    16.         
      , M! h& T( r) }3 u! O% P! w* G
    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-->  ( r3 e$ U: P" @% Q
    18.     <context:component-scan base-package="com.mongodb.controller" />   
      # |. Y  k3 |' F; T. g3 X
    19.       
      5 f* f  D! c; r" ~
    20.     <!-- 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
    21.     <mvc:annotation-driven />     R5 _0 I- @$ A8 ^: Y" k
    22.     . J: D/ `2 J6 u9 x! Z, Q! c' ?
    23.     <!-- Declare a view resolver -->  
      , K4 |8 u8 Y. _3 l9 @# q5 S
    24.     <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"   
      % v9 v2 ]6 G3 v8 h
    25.             p:prefix="/users/" p:suffix=".jsp" />  
      : c; C6 J: g( `4 G
    26.             & {# E1 m, x' h$ o& K6 p: S! z/ z  l
    27.    
      % }* c. [9 w: O; q
    28. </beans>
    复制代码
    UserServiceImpl 基本实现代码:
    1. package com.mongodb.service;& Q  g# l8 V: F  B
    2. import java.util.List;
      + S- M( T* q, G  o
    3. import org.springframework.beans.factory.annotation.Autowired;% Y8 e5 C# Q5 }2 _' L7 _" C
    4. import org.springframework.data.mongodb.core.MongoOperations;; u5 q) p; z. v; U/ f9 ~
    5. import org.springframework.data.mongodb.core.query.Criteria;  q/ c" d$ j% a) i' H4 A8 u: C5 g
    6. import org.springframework.data.mongodb.core.query.Query;- Z& U" ~1 |7 H6 a7 ~. P4 O
    7. import org.springframework.data.mongodb.core.query.Update;
      : Q2 b1 U% @$ t- e# \
    8. import org.springframework.stereotype.Service;8 r$ n, y( h' e# e
    9. import com.mongodb.domain.Users;
      : A! x0 c7 J2 E  {" C. e) I
    10. @Service(value = "userService")   
      - B( {+ K5 R9 P
    11. public class UserServiceImpl implements UserService{ 9 V% o2 J6 W. v  Y3 q
    12.     private static String USER_COLLECTION = "users"; 3 ^, [1 `7 h  k( h# B, O
    13.     @Autowired  
      # ?8 }; h1 p/ w
    14.     MongoOperations mongoTemplate;
      % P- L3 }6 @7 o3 K0 w8 E! J3 E
    15.        public void saveUser(Users users){            
      + ~. z5 s) _6 |
    16.         mongoTemplate.save(users, USER_COLLECTION);            
      6 v3 `5 P: X# y
    17.     }        
      - t7 g/ ?6 |/ e1 s4 s2 _) Z% Y8 C
    18.     public Users findUserByName(String name){) Y: V+ W" E' W+ K3 f
    19.         return mongoTemplate.findOne(new Query(Criteria.where("name").is(name)), Users.class, USER_COLLECTION);  
      8 X& a" z1 h( P8 d" b- y% ~
    20.     }4 \- ^6 M9 v% Z
    21.         public void removeUser(String name) {9 P8 Z5 T" ]: ?
    22.                 mongoTemplate.remove(new Query(Criteria.where("name").is(name)),Users.class,USER_COLLECTION);
      & f5 h9 w9 w4 e- e. e& f
    23.         }
      ' Y* M% m" h5 g% a+ _
    24.         public void updateUser(String name,String key,String value) {
      1 u$ M9 i3 ^+ L+ Y& _! ]
    25.                 mongoTemplate.updateFirst(new Query(Criteria.where("name").is(name)), Update.update(key, value), Users.class);  ?1 h$ x* U6 U) C+ R# y) _
    26.                 ! C; d: F3 B/ m
    27.         }1 b. g& b6 w& k3 y
    28.         public List<Users> listUser() {
      + Y4 n# ]% W3 x  v7 _: m7 e9 v8 x
    29.                 return mongoTemplate.findAll(Users.class);
      ' L% ]  m! @; Q' o" m9 L
    30.         }7 x; O, n- E/ p6 U9 x
    31. }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爱好者②群: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 |只看该作者
    谢谢分享
    ( S" W6 Y  F, I, ?! y8 r$ Q
    回复

    使用道具 举报

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

       

    关闭

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

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