본문 바로가기
개발아닌개발/mongoDB

[오류] the type reactor.core.publisher.mono cannot be resolved. it is indirectly referenced from required .class files

by 불청객 2021. 11. 15.
반응형

MongoDB의 데이터를 가져와 HTML 에 뿌려주는 작업을 하려는데 리액터라는 개념을 도입해서

연결을 유지한 체 데이터를 가져오기로 한다.

 

근데 인터페이스 레포지토리를 만듦과 동시에 오류가 떠버리니 ..

 

내 프로젝트에 적용할 수 없는 코드인가 싶었고.. 웬만큼 검색해도 안나오고 스택오버플로우 에는 이 비슷한 내용 문의가 한 건도 안나온다.

 

그러다 리액터 적용이 안되는건 빼먹은 의존성이 있다는것같아서 pom.xml에 적용할만한걸 겨우 찾아 해결했다.

해당 오류가 검색에 안나오는건 나만 댕청해서 일까 .. 

 

 

 

 

오류내용

the type reactor.core.publisher.mono cannot be resolved. it is indirectly referenced from required .class files

 

 

 

해결방안

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
		</dependency>

 

728x90
반응형

댓글