써먹는 웹개발
[Elasticsearch] import 에러시 해결방법 본문
728x90
반응형
import 할때 에러나는 경우별 해결방법입니다.
1. import org.elasticsearch.transport.client.PreBuiltTransportClient;
pom.xml 파일에서 dependencies에 다음 소스를 추가하면 됩니다.
1
2
3
4
5
|
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<version>6.3.2</version>
</dependency>
|
cs |
출처 : discuss.elastic.co/t/prebuilttransportclient-doesnt-exist-in-my-6-3-0-library/156223
2. import org.elasticsearch.node.NodeBuilder.*;
pom.xml 파일에서 dependencies에 다음 소스를 추가하면 됩니다.
1
2
3
4
5
|
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>2.1.0</version>
</dependency>
|
cs |
728x90
반응형
'Study > Elasticsearch' 카테고리의 다른 글
[Elasticsearch] spring boot와 연동하면서 유일하게 에러없이 참고한 git 프로젝트 주소 안내 (0) | 2021.05.06 |
---|---|
[Elasticsearch 펌] httpie를 Windows에서 설치 (0) | 2021.05.06 |
[Elasticsearch] Content-Type header [application/x-www-form-urlencoded] is not supported 해결방법 (0) | 2021.04.27 |
[Elasticsearch] curl: (1) Protocol "'http" not supported or disabled in libcurl 해결방법 (0) | 2021.04.27 |
[Elasticsearch] Windows 10에서 설치 및 실행 (0) | 2021.04.27 |
Comments