I\'m starting with spring-boot and i have some configuration problems. I cannot autowire some services. I get an BeanCreationException.
My Application class:
<i just remove the Jersey dependency and only work with the native REST-api (RequestMapping) from spring. And it works. I think, spring-boot and jersey don't work good together.
I remove the jersey dependency:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jersey</artifactId>
</dependency>
and then I added the sprint-boot-starter-web dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>