Results 1 to 6 of 6

Thread: Spring Data MongoDB 1.0.0.M5 Released

  1. #1
    Join Date
    Aug 2004
    Posts
    1,104

    Default Spring Data MongoDB 1.0.0.M5 Released

    Dear Spring Community,

    I am pleased to announce that the Spring Data MongoDB 1.0 Milestone 5 release is now available!

    The primary goal of the <b>Spring Data</B> project is to make it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services.

    The MongoDB module provides integration with the MongoDB document database.

    Downloads | JavaDocs | Reference Documentation | Changelog

    To learn more about the project, visit the Spring Data MongoDB Page.

    There are a number of bug fixes and minor changes to the way certain features work. See the changelog for more details.

    Looking forward to your feedback on the forum or in the issue tracker.
    Thomas Risberg
    SpringSource by Pivotal
    http://www.springsource.org

  2. #2
    Join Date
    Sep 2008
    Posts
    6

    Default

    Following exception occured while pointing to 1.0.0.M5 version.

    The POM for org.springframework.data:spring-data-commons-core:jar:1.2.0.BUILD-SNAPSHOT is missing, no dependency information available

    Thanks

  3. #3
    Join Date
    Aug 2004
    Posts
    1,104

    Default

    Ooops, forgot to update the spring-data-commons dependecy to 1.2.0.M2 - it should be fixed by now. Please let us know if this is still a problem.

    Thanks for the alert.
    Thomas Risberg
    SpringSource by Pivotal
    http://www.springsource.org

  4. #4
    Join Date
    Nov 2011
    Posts
    1

    Default

    I have exception in maven dependency. Version 1.0.0.M5 is unknown, jaust as 1.0.0.M4 etc.

    Thanks

  5. #5
    Join Date
    May 2010
    Posts
    15

    Lightbulb help?spring mongodb why not filter charater "$" and "^" and "?"

    code example:
    if(StringUtil.notNull(criteria)){
    if(criteria == "$"){
    criteria = "\\u0024";
    }
    if(criteria == "^"){
    criteria = "\\u005E";
    }
    query.addCriteria(Criteria.where("tagName").regex( criteria, QueryOperators.IN));
    }

  6. #6
    Join Date
    May 2013
    Location
    new york, usa
    Posts
    1

    Default spring-data-mongodb

    spring-data-mongodb does not actually create the index until the first time you pro grammatically access the collection that will contain the index. I believe that if you poke around their documentation, there is a way to get it to index auto-magically. As for my post, it is a bit out-dated now. Since they have released the official 1.0.0 release of spring-data-mongodb, you can set the write concern directly in your application Context using the
    mongo:mongo element:

    <mongo:mongo write-concern="SAFE"/>

    <mongo:db-factory id="databaseFactory" .... mongo-ref="mongo" />


    MySQL Interview Questions And Answers
    MySQL Interview Questions And Answers

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •