Guest User

Untitled

a guest
Dec 14th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. @Repository
  2. public interface ContributorStatRepository extends ReactiveCrudRepository<ContributorStat, Long> { //
  3. ReactiveCassandraRepository<ContributorStat, Long> {
  4. Flux<ContributorStat> findByAkonId(String akonId);
  5. }
  6.  
  7. com.example.sample.controller.ContributorStatControllerTest > shouldReturnBadRequestWithBlankContributorStat FAILED
  8. java.lang.IllegalStateException
  9. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException
  10. Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException
  11. Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException
  12.  
  13. dependencies {
  14. compile('org.springframework.boot:spring-boot-starter-actuator')
  15. compile('org.springframework.boot:spring-boot-starter-data-jpa')
  16. compile('javax.xml.bind:jaxb-api:2.3.0')
  17. compile('org.springframework.boot:spring-boot-starter-webflux')
  18. compile('org.springframework.boot:spring-boot-starter-data-cassandra-reactive')
  19. testCompile('org.springframework.boot:spring-boot-starter-test')
  20. testCompile('io.projectreactor:reactor-test')
  21. }
Add Comment
Please, Sign In to add comment