我的日常

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

动态微博

查看: 3779|回复: 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详细讲解项目源码
    * N# `( c5 b% K/ G. x  H, NMongo DB 是目前在IT行业非常流行的一种非关系型数据库(NoSql),其灵活的数据存储方式备受当前IT从业人员的青睐。Mongo DB很好的实现了面向对象的思想(OO思想),在Mongo DB中 每一条记录都是一个Document对象。Mongo DB最大的优势在于所有的数据持久操作都无需开发人员手动编写SQL语句,直接调用方法就可以轻松的实现CRUD操作。& w9 N* I6 o1 T! |

    ! `4 h) d0 Z- Q- XNoSQL数据库与传统的关系型数据库相比,它具有操作简单、完全免费、源码公开、随时下载等特点,并可以用于各种商业目的。这使NoSQL产品广泛应用于各种大型门户网站和专业网站,大大降低了运营成本。& L( Z& H9 v, l) ^8 B

    $ s9 |. a; K. j% g) TMongo DB 数据库自行搭建、也可以暂用地址见mongo-config.xml配置 可以进行增删查改。* T) I3 s" }2 u" v) m" H- y
    - R; W3 {3 }! T" A1 b
    环境配置: myeclipse 8.6  、mongodb 3.0  、spring 4.0.6
    9 }! A5 R% L. ]5 t  `: U
    3 N! \* A* ^& T7 ~
    : E7 s2 ~4 O0 u3 `; U5 c+ P项目采用springmvc 结构。
    " V' i. X1 d5 ~+ Q8 v% f所需JAR包:
    & s0 W; G: B' U. d
    7 m4 B+ ^. G1 z# b* ~1 G" F8 F' k+ b
    : o- I: ~: y1 B! M+ I# d4 M4 Q9 {* ?2 k$ ]$ q- P( |7 Q/ a
    applicationContext.xml配置:
    $ ?) e( i2 G5 A2 L& k
    1. <?xml version="1.0" encoding="UTF-8"?>  
      - W5 t& D0 o0 f# N, I
    2. <beans xmlns="http://www.springframework.org/schema/beans"  & {+ l2 c# z8 ]: Q/ I
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  8 z/ y( X1 ?$ r8 X: a1 B. E
    4.     xmlns:p="http://www.springframework.org/schema/p"  ( K. O. ~* F3 n4 \
    5.     xmlns:context="http://www.springframework.org/schema/context"    ]& I* w5 G: m4 |: _: I( |
    6.     xmlns:mvc="http://www.springframework.org/schema/mvc"  4 H) |& J# A3 P- T
    7.     xsi:schemaLocation="http://www.springframework.org/schema/mvc   
      : d& w1 ?0 \* p2 }6 ?8 o
    8.         http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd  
      3 c7 r: _) P0 `
    9.         http://www.springframework.org/schema/beans ) Q  Y& x: k+ Z$ E! z+ s5 E
    10.         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
      5 ~: Y# U$ [, Z
    11.         http://www.springframework.org/schema/context 0 {; ?* Z$ o& f5 i. ~& t0 o& W
    12.         http://www.springframework.org/schema/context/spring-context-3.0.xsd"> - T, s6 g& g3 Z' }6 h
    13.      <context:component-scan base-package="com.mongodb.service" />, {: s" o; e  |# B9 U# H- q9 n
    14.      <import resource="mongo-config.xml"/>% |9 w! t; M( J/ D6 J3 m9 c
    15. </beans>
    复制代码
    mongo-config.xml配置:
    ( p8 J6 G' l/ Y! N- E, Q2 G
    1. <?xml version="1.0" encoding="UTF-8"?>  5 \3 a5 F7 |2 k4 ?) V$ D
    2. <beans xmlns="http://www.springframework.org/schema/beans"  ; d* _% e5 S$ T
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   ( ?" j6 Y. R# w7 ^# O/ ?
    4.     xmlns:p="http://www.springframework.org/schema/p"   
      1 g2 L, y, N, d  B
    5.     xmlns:mongo="http://www.springframework.org/schema/data/mongo"  , l9 Q" A4 |; [( x" o
    6.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
      6 U) G$ {- \# g) |
    7.             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
      3 W, \: V# X! m0 `/ T
    8.             http://www.springframework.org/schema/data/mongo  , R' _5 d! u  y8 K- q
    9.             http://www.springframework.org/schema/data/mongo/spring-mongo.xsd% Q8 |1 m/ y" Z( }$ c2 S$ r
    10.             http://www.springframework.org/schema/data/repository4 ~( V9 L4 D2 l8 `
    11.             http://www.springframework.org/schema/data/repository/spring-repository-1.5.xsd">        
      9 S5 m3 J, L* L! k0 c) Y; c, g
    12.    * N" Z1 R. `0 F* q& y$ V4 d3 D
    13.     <mongo:mongo host="121.42.26.72" port="12345"/>  8 j- ?2 c6 J. g# z  O
    14.       
      . [; C) M+ ]5 B& c
    15.     <!-- Offers convenience methods and automatic mapping between MongoDB JSON documents and your domain classes. -->  
      + b* t9 m( }0 u- M4 y
    16.     <bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">  
      ) z" M$ v8 O, v4 x4 B4 ~
    17.             <constructor-arg ref="mongo"/>  ) h- I6 A" B+ y
    18.             <constructor-arg name="databaseName" value="itstyle"/>  ( u# x  ?# ]8 T' Z* _2 a  r
    19.     </bean>  
      : I% t2 h, q% W3 r' o
    20.       
      ! b/ K$ A8 m* F1 B# w
    21. </beans>
    复制代码

    ; d) i; ?& J7 J8 f  @2 Qspring-servlet.xml配置:
    3 A, p8 R4 C5 f- U1 E- [
    5 l/ U/ p5 [' J2 d4 ?* ?
    1. <?xml version="1.0" encoding="UTF-8"?>  
      # G( Y- n1 j# N- h
    2. <beans xmlns="http://www.springframework.org/schema/beans"  ! j2 @- c2 ~+ }, |
    3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
      " c5 T' o4 x  ]* z
    4.     xmlns:p="http://www.springframework.org/schema/p"  2 R, A, ?$ _5 d* C1 ?; x9 h
    5.     xmlns:mvc="http://www.springframework.org/schema/mvc"
      1 b) M6 I) |' b5 E2 E
    6.     xmlns:context="http://www.springframework.org/schema/context"  
      & w& q7 ?- l/ ]" A! h
    7.     xmlns:mongo="http://www.springframework.org/schema/data/mongo"  0 d; \0 F0 Y- b9 G: ]. N
    8.     xsi:schemaLocation="http://www.springframework.org/schema/beans   
      5 R) @' H( p2 L
    9.             http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
      ! N  b* z8 g+ `3 J3 T( I  b9 Y$ R
    10.             http://www.springframework.org/schema/context
      2 d4 `) ^. Y7 ^$ {7 [2 {( E( }
    11.             http://www.springframework.org/schema/context/spring-context-3.0.xsd
      2 N" O6 g/ C# G8 w8 n
    12.             http://www.springframework.org/schema/data/mongo  
      * c$ Z5 y4 @  w# F
    13.             http://www.springframework.org/schema/data/mongo/spring-mongo.xsd- H/ ~3 d, P6 u
    14.             http://www.springframework.org/schema/mvc        7 _" X$ K0 J3 N* J  z* R
    15.             http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">0 d7 Z" q# ], p/ {9 v
    16.         
      $ K) ?3 Q7 V- v: |4 P$ k9 K
    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-->  
      5 q' B/ ^& W! G8 M9 Z
    18.     <context:component-scan base-package="com.mongodb.controller" />   6 K2 A( g3 v! t" J7 f
    19.       + B, t4 o2 r5 b% l& n# f
    20.     <!-- Configures the annotation-driven Spring MVC Controller programming model.Note that, with Spring 3.0, this tag works in Servlet MVC only!  -->  9 `5 m1 g/ s' u5 C& i
    21.     <mvc:annotation-driven />   " `- Q9 @1 X% k  R2 f( m2 K
    22.     5 o/ V% q2 m/ r, m1 ^
    23.     <!-- Declare a view resolver -->  " R2 c! W/ O2 s. `3 Y
    24.     <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"   
      ' O0 g& g3 o! U7 A  K3 D; J. Z
    25.             p:prefix="/users/" p:suffix=".jsp" />    o- f- W( g+ y  ]
    26.             / `* v8 y/ W( q; N  M1 X5 x- O
    27.    ( r3 g- t) i1 U% Y; ^+ O8 X
    28. </beans>
    复制代码
    UserServiceImpl 基本实现代码:
    1. package com.mongodb.service;9 U8 q1 d: |- f, {9 g& ]4 e" e
    2. import java.util.List;+ F" H5 r8 j! ~" U  H
    3. import org.springframework.beans.factory.annotation.Autowired;
      2 G9 n: D2 ~( [: u( b, l" k
    4. import org.springframework.data.mongodb.core.MongoOperations;+ B2 ^5 k2 D+ `3 Y* O7 @
    5. import org.springframework.data.mongodb.core.query.Criteria;
      / ^9 I& G) B) Z0 B0 Z/ x3 ^2 i( A
    6. import org.springframework.data.mongodb.core.query.Query;% _; g6 S  j  w( c# V( m" e* d0 G
    7. import org.springframework.data.mongodb.core.query.Update;1 }5 @# s3 F; d7 J( n) m0 C
    8. import org.springframework.stereotype.Service;
      7 j* f- H5 r( J) y) i
    9. import com.mongodb.domain.Users;; Y" i; j# M3 Z
    10. @Service(value = "userService")   
      + W0 l9 N, A$ J5 S, |) L
    11. public class UserServiceImpl implements UserService{ 4 k+ [* _" M, N) T5 z
    12.     private static String USER_COLLECTION = "users";
      ; P7 [9 W/ i+ U5 l+ M
    13.     @Autowired  : D) `- h3 K& f* @& W6 K6 X7 B* z
    14.     MongoOperations mongoTemplate;
      - K4 P. W: J! d6 X) Z3 C5 {
    15.        public void saveUser(Users users){            2 {/ Q8 i/ w: m+ M( M) A2 T) S
    16.         mongoTemplate.save(users, USER_COLLECTION);            
      6 H! w! P& h+ v0 h$ A/ h2 }3 _
    17.     }        , G7 M6 N2 m* W. R, n' |' d
    18.     public Users findUserByName(String name){
      8 L1 ^1 B: _6 }8 ?& `
    19.         return mongoTemplate.findOne(new Query(Criteria.where("name").is(name)), Users.class, USER_COLLECTION);  : G0 B; P# O1 S/ \$ {
    20.     }- k" G8 [" M6 O
    21.         public void removeUser(String name) {
      ( q5 l+ O% O( F* S4 \$ d$ H8 q
    22.                 mongoTemplate.remove(new Query(Criteria.where("name").is(name)),Users.class,USER_COLLECTION);9 j" h$ v4 M8 t# \' |: i9 o+ i. }2 D! |  ~0 k
    23.         }
      ; v; @1 y' z* _, N
    24.         public void updateUser(String name,String key,String value) {8 `' J( X" j$ a  E* n, C
    25.                 mongoTemplate.updateFirst(new Query(Criteria.where("name").is(name)), Update.update(key, value), Users.class);
      3 w7 l* _& g" U: B: e
    26.                 3 l( u; X+ L/ j- |5 x
    27.         }
      " d& z7 g+ r9 l# a4 [% L, Z
    28.         public List<Users> listUser() {) n6 G& H+ y) a& O" y
    29.                 return mongoTemplate.findAll(Users.class);
      ( O8 I- P! n8 l9 _
    30.         }7 |$ A) W4 w( r" F
    31. }4 s& C5 P+ q& J6 Z& F( [
    复制代码

    / `) A, @% T& k
    - y! a* I0 {  r( U9 m演示地址:http://121.42.26.72:8080/SpringMongod4 p( A5 h/ a4 ]$ r0 p+ k6 R

    : d" Q. w) F6 W2 e6 O/ A项目下载地址:Spring4 整合MongoDB详细讲解项目源码( O+ E: m. d8 l. I; F3 j
    # _4 k9 K' x& U7 P
    解压码:www.52itstyle.com; o  ~0 B+ A3 z

    科帮网 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+ ~" n  o, o0 ]$ E
    回复

    使用道具 举报

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

       

    关闭

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

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