Here is my pom.xml:

    <!-- Spring Data MongoDB -->
    <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-mongodb</artifactId>
        <version>1.0.0.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>cglib</groupId>
        <artifactId>cglib-nodep</artifactId>
        <version>2.2.2</version>
    </dependency>

And my "Configuration class":

package example.conf;

import org.springframework.context.annotation.Configuration;
import org.springframework.data.mongodb.config.AbstractMongoConfiguration;

import com.mongodb.Mongo;

@Configuration
public class MongoDbConfig extends AbstractMongoConfiguration{

    public String getDatabaseName() {
        return "test";
    }

    public Mongo mongo() throws Exception {
        return new Mongo();
    }

    public String getMappingBasePackage() {
        return "example";
    }

}

The Exception:

Caused by: java.lang.ClassCastException: org.springframework.data.mongodb.core.MongoFactoryBean$$EnhancerByCGLIB$$99c3d370 cannot be cast to com.mongodb.Mongo

However, when value of spring-data-mongodb's version is 1.0.0.M5, it's OK!

How can I fix this Exception with 1.0.0.RELEASE?

link|improve this question
Is there a chance we can see more of the stack trace? From that single line it's hard to tell what is actually causing the issue. – Oliver Gierke Mar 29 at 22:25
feedback

1 Answer

As far as I know, the version 1.0.0.RELEASE for Spring MongoDB does not exist. MVN Repository does not have that version. It works for 1.0.0.M5 because it's a valid release and it exists in the MVN Repository.

EDIT: Sorry, I was wrong there exists 1.0.0.RELEASE in the Spring Repository. You will have to add the below repository in your pom.xml file.

<repository>
        <id>org.springframework.maven.release</id>
        <name>Spring Maven Release Repository</name>
        <url>http://maven.springframework.org/release</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
link|improve this answer
This doesn't answer the question at all, it just shows how to include the MongoDB dependency. – cdeszaq Mar 23 at 19:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.