-
Notifications
You must be signed in to change notification settings - Fork 74
Closed
Description
I have tried to clone the latest version of spring-data-mybatis on branch master
My application failed with this error :
Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start embedded container; nested exception is org.springframework.boot.context.embedded.EmbeddedServletContainerException: Unable to start embedded Tomcat
Application failed to start due to an exception
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'java.lang.Class<org.springframework.data.repository.Repository<?, ?>>' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}I have upgraded in my build.gradle :
compile("org.mybatis.spring.boot:mybatis-spring-boot-starter:1.2.0")
compile("org.mybatis:mybatis:3.4.2")
compile("org.mybatis:mybatis-spring:1.3.1")I manage to do a working build with these dependencies using this commit
What version are you exactly compatible with in next release ?
I have encoutered some trouble (#85) with @Projection annotation. This is why I am trying to upgrade.