我的日常

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

动态微博

查看: 3778|回复: 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详细讲解项目源码2 _' y2 W% ?: s0 c9 H
    Mongo DB 是目前在IT行业非常流行的一种非关系型数据库(NoSql),其灵活的数据存储方式备受当前IT从业人员的青睐。Mongo DB很好的实现了面向对象的思想(OO思想),在Mongo DB中 每一条记录都是一个Document对象。Mongo DB最大的优势在于所有的数据持久操作都无需开发人员手动编写SQL语句,直接调用方法就可以轻松的实现CRUD操作。/ x6 R, J- p) {2 |& G' F/ Z, u

    5 m+ U7 c3 W, ]. zNoSQL数据库与传统的关系型数据库相比,它具有操作简单、完全免费、源码公开、随时下载等特点,并可以用于各种商业目的。这使NoSQL产品广泛应用于各种大型门户网站和专业网站,大大降低了运营成本。% H; _# c" d) q/ q; A. o( ^5 d+ j) b3 J

    + s* g' F2 \; S2 iMongo DB 数据库自行搭建、也可以暂用地址见mongo-config.xml配置 可以进行增删查改。! y, i. @7 \+ j

    7 U  O) w0 f) @; W+ T9 U: l环境配置: myeclipse 8.6  、mongodb 3.0  、spring 4.0.6
    ' |6 S4 ^8 P+ s3 t) W; R
    ! O; }& s1 y  p5 l5 f! j3 S3 ^
    / C3 }+ _/ m* `. w项目采用springmvc 结构。
    & n2 U. m! H( W& q0 _/ |所需JAR包:, R* k4 O! `6 a  e

    ; ?* Z$ w8 g/ e+ b/ A( S( V2 s3 S+ F
    * G* W' }/ t# }6 G" o, u( q7 [- L3 e0 i* D/ o% e4 j
    applicationContext.xml配置:9 h( M7 F% F' K4 Z; F
    1. <?xml version="1.0" encoding="UTF-8"?>  ; Y, W: a4 _$ |5 H& j
    2. <beans xmlns="http://www.springframework.org/schema/beans"  
      & H" h: ^0 N' ?) v
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  8 u  V. u$ w# ]+ p8 k4 F4 D1 E
    4.     xmlns:p="http://www.springframework.org/schema/p"  
      2 x( l' ]! {; y9 I
    5.     xmlns:context="http://www.springframework.org/schema/context"  3 I8 C6 g: l7 ^. u
    6.     xmlns:mvc="http://www.springframework.org/schema/mvc"  ; \9 t& |" W0 |/ C2 z( N
    7.     xsi:schemaLocation="http://www.springframework.org/schema/mvc   9 j1 z3 N6 J- F7 O0 U
    8.         http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd  : D) t. J2 }" X1 s& R. g) X/ @
    9.         http://www.springframework.org/schema/beans 0 v+ [  _; L+ P" n
    10.         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
      4 |. K# t. g2 e6 _# W
    11.         http://www.springframework.org/schema/context ; I& V  {8 l! H+ }8 Q6 T
    12.         http://www.springframework.org/schema/context/spring-context-3.0.xsd">
      / m. F7 `: ]" K! @" ?, B. |
    13.      <context:component-scan base-package="com.mongodb.service" />
      ; i) L; j0 j  g8 s$ T
    14.      <import resource="mongo-config.xml"/>8 H3 A: i9 K) I$ V
    15. </beans>
    复制代码
    mongo-config.xml配置:
    ; e2 v3 L5 H" t* K
    1. <?xml version="1.0" encoding="UTF-8"?>  
      8 x8 ]" y9 P+ p
    2. <beans xmlns="http://www.springframework.org/schema/beans"  
      7 s/ W. Z/ s, o8 o3 r" u6 r
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   + ^# e% U( Q6 D" c! G
    4.     xmlns:p="http://www.springframework.org/schema/p"   
      0 X8 a0 A) Q; g
    5.     xmlns:mongo="http://www.springframework.org/schema/data/mongo"  
      " I9 a2 t0 R( J" R
    6.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
      ) S# @! o- H/ Y% C6 M
    7.             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  # {0 I  b% `2 H0 K1 k
    8.             http://www.springframework.org/schema/data/mongo  
      . J- Q  ?4 n: @/ \! y& U/ Z, k% M
    9.             http://www.springframework.org/schema/data/mongo/spring-mongo.xsd& @7 ?' s. ?/ D2 a% @0 Q- q3 s
    10.             http://www.springframework.org/schema/data/repository* B8 N# u- Q: c0 Z9 u) B
    11.             http://www.springframework.org/schema/data/repository/spring-repository-1.5.xsd">        
      # x$ M7 i7 K) m  o$ n
    12.    
      & h/ {$ k6 E7 R, S* w
    13.     <mongo:mongo host="121.42.26.72" port="12345"/>    e2 G3 _* C+ W* a7 }* r
    14.       
      ' A8 G4 o9 s' G
    15.     <!-- Offers convenience methods and automatic mapping between MongoDB JSON documents and your domain classes. -->  
      8 K( k! U( d* R+ `- F9 d
    16.     <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">  : J" [7 \/ |, ~) }
    17.             <constructor-arg ref="mongo"/>  , e; N- J4 p) W8 P: `8 U2 q
    18.             <constructor-arg name="databaseName" value="itstyle"/>  
      ; C6 T% N8 `. R2 {. q; C
    19.     </bean>  
      $ D% t. F' L- l# F: T
    20.       0 E2 X3 i: ~$ w; E. b
    21. </beans>
    复制代码

    8 p3 A) v# i& f% yspring-servlet.xml配置:% {/ @; `8 h% Y$ m+ \, S; b# G+ A3 {6 s
    ) y$ W$ A8 ?# z# A+ r7 ]! O
    1. <?xml version="1.0" encoding="UTF-8"?>  
      1 v' C1 f% ]) q) N7 p# \4 b! t/ p
    2. <beans xmlns="http://www.springframework.org/schema/beans"  
      , @7 ?0 G" F2 h
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
      7 v2 _' V. A* c% _. A) ?
    4.     xmlns:p="http://www.springframework.org/schema/p"  
      3 N7 X9 V! k6 I
    5.     xmlns:mvc="http://www.springframework.org/schema/mvc" ( W0 N$ ~: ], A/ E0 }, M
    6.     xmlns:context="http://www.springframework.org/schema/context"  
      . J) \, f/ H# l+ t; F' ~" D' E5 B
    7.     xmlns:mongo="http://www.springframework.org/schema/data/mongo"  
      4 F! j/ O$ W3 C1 X3 {4 N$ O( i0 F
    8.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
      - L/ \$ J& o! M1 R- o" n) L( [* _
    9.             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd + |1 C) r& ?: Y
    10.             http://www.springframework.org/schema/context
      8 ^/ M, t2 b0 M3 {* c
    11.             http://www.springframework.org/schema/context/spring-context-3.0.xsd ' F( q9 n) L: V( _, o, l, W. U
    12.             http://www.springframework.org/schema/data/mongo  / E8 Y/ X7 b7 d# `3 o
    13.             http://www.springframework.org/schema/data/mongo/spring-mongo.xsd
      0 @' Y( W0 I" }6 z, p; @
    14.             http://www.springframework.org/schema/mvc        
      , Q3 Z1 J" e# ?; c- B4 `
    15.             http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
      % U" e; E% ^; P5 H# C+ A$ Q
    16.         ; G8 O% n' W8 E8 ~
    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-->  & c6 h+ F7 N- `& f0 P: c2 E  @
    18.     <context:component-scan base-package="com.mongodb.controller" />   
      4 X' P: {' t6 u7 k! A* g
    19.       
      7 \5 c" A0 O- x  ]" ]2 `: h9 Z- t1 g
    20.     <!-- Configures the annotation-driven Spring MVC Controller programming model.Note that, with Spring 3.0, this tag works in Servlet MVC only!  -->  7 U5 _2 w2 c: t8 {  L+ P! E1 o5 F
    21.     <mvc:annotation-driven />   
      8 D# V1 o: \2 n# H4 p+ M
    22.    
      % ~# T+ I* A% z$ S
    23.     <!-- Declare a view resolver -->  
        \6 G4 o( v2 W" t
    24.     <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"   
      0 b1 M0 O- R. a! y
    25.             p:prefix="/users/" p:suffix=".jsp" />  1 l6 l7 P' ?) E3 {  w
    26.             + m# U) [& ?( D: ~/ x1 }8 w
    27.    , P8 ]  h$ N3 V5 `
    28. </beans>
    复制代码
    UserServiceImpl 基本实现代码:
    1. package com.mongodb.service;7 P. M( B6 U& Z
    2. import java.util.List;0 L) T2 e5 {) x) i* S# t4 B
    3. import org.springframework.beans.factory.annotation.Autowired;" B, c- |3 M: _" c1 _2 _3 v: @# ]
    4. import org.springframework.data.mongodb.core.MongoOperations;& s9 |( T; m, S
    5. import org.springframework.data.mongodb.core.query.Criteria;8 }, _2 u  c# v% p1 G
    6. import org.springframework.data.mongodb.core.query.Query;8 F$ v, z+ l- a6 Y
    7. import org.springframework.data.mongodb.core.query.Update;
      , \3 g$ l' o) h1 Q6 R$ O
    8. import org.springframework.stereotype.Service;
        I, E. \# M/ ~6 E: F
    9. import com.mongodb.domain.Users;
      / H7 [: {# {% p
    10. @Service(value = "userService")   ; [' P/ E2 r) V# S, s
    11. public class UserServiceImpl implements UserService{
      % [4 J; H; l6 |6 @( K. E. ?2 Q
    12.     private static String USER_COLLECTION = "users"; 8 j4 y+ B. ~% M& }
    13.     @Autowired  6 A" `! h: @4 f* j" Q. y
    14.     MongoOperations mongoTemplate;
      ) k! [' \. h/ ?' l3 ~( m/ L7 `* Z  Y! x
    15.        public void saveUser(Users users){            
      3 `+ ^7 ]/ `* B+ o$ s9 X/ O
    16.         mongoTemplate.save(users, USER_COLLECTION);            
      ; S( R2 I+ B8 ^! R
    17.     }        
      % {# a4 v$ K, D, R
    18.     public Users findUserByName(String name){
      1 ?- S( ?. Y7 s) o) @
    19.         return mongoTemplate.findOne(new Query(Criteria.where("name").is(name)), Users.class, USER_COLLECTION);  
      # {' ?- _$ n# i3 k" b; ~8 t; W2 `
    20.     }
      ( [5 Q' [6 _7 F. B  P# |! B% k
    21.         public void removeUser(String name) {
      " ^/ s3 x/ U  m& B4 z( v0 [9 _2 \
    22.                 mongoTemplate.remove(new Query(Criteria.where("name").is(name)),Users.class,USER_COLLECTION);! k' u# Q* O8 P. C
    23.         }" y; ~# F/ Q# C9 J; Y" y3 Q. Q5 H' {
    24.         public void updateUser(String name,String key,String value) {
      $ `) ?6 N5 N7 q7 q; O* H
    25.                 mongoTemplate.updateFirst(new Query(Criteria.where("name").is(name)), Update.update(key, value), Users.class);
      ! J' |. n! }$ g3 X& c
    26.                
      7 `- g( o  H( d+ V
    27.         }; @$ h. a' m: Z
    28.         public List<Users> listUser() {, v9 v5 L' A+ {1 P. K: W6 F) y
    29.                 return mongoTemplate.findAll(Users.class);
      4 u  K, W8 [2 B. o$ t; C; ^
    30.         }! s. `/ Z+ _/ ]  _; @
    31. }% ?- x- X( m  [" _( S
    复制代码

    * n& [2 g8 X# ~% M7 k. D
    % Y8 _. P% X- G4 e. B演示地址:http://121.42.26.72:8080/SpringMongod- O9 Y" n0 z; z3 W9 t" s; E5 W5 `  o. {. @
    3 s! [# C7 ~9 N; T. F0 `
    项目下载地址:Spring4 整合MongoDB详细讲解项目源码
    1 E9 C% I* _) o# b! ~0 i& H" M6 _: s( M, `( ?0 Y
    解压码:www.52itstyle.com" o' c+ ?, @  M9 i7 ]5 h6 J  N2 l

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


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

    2

    主题

    0

    听众

    128

    金钱

    三袋弟子

    该用户从未签到

    地板
    发表于 2015-05-04 00:46:42 |只看该作者
    谢谢分享  }4 q/ K% z2 p6 a9 J" P0 ?
    回复

    使用道具 举报

    7

    主题

    3

    听众

    383

    金钱

    版主

    该用户从未签到

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

    点评

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

    使用道具 举报

    admin    

    1244

    主题

    544

    听众

    1万

    金钱

    管理员

  • TA的每日心情

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

    [LV.5]常住居民I

    管理员

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

    使用道具 举报

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

       

    关闭

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

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