How to configure elasticsearch 6 java

I'm using Spring version 2.1.18.RELEASE (I can't change this version) I need to implement a crud repository for elasticsearch, for this I connect spring-data-elasticsearch (version 3.1.21.RELEASE is automatically pulled up) with elasticsearch 6.4.3 I tried a bunch of manuals, but elastic is so different from version to version that I can't find a solution. I need to connect to remote server via https with username and password.
pom:

        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-elasticsearch</artifactId>
        </dependency>
        <dependency>
            <groupId>org.elasticsearch</groupId>
            <artifactId>elasticsearch</artifactId>
        </dependency>
        <dependency>
            <groupId>org.elasticsearch.client</groupId>
            <artifactId>transport</artifactId>
        </dependency>
        <dependency>
            <groupId>org.elasticsearch.client</groupId>
            <artifactId>elasticsearch-rest-client</artifactId>
        </dependency>

My config:

@Configuration
@EnableElasticsearchRepositories(basePackages = "path.to.elastic")
@ComponentScan(basePackages = {"path.to.elastic"})
public class ElasticConfiguration {

    private final int port = 1234;

    @Bean
    public Client client() throws Exception {

        Settings settings = Settings.builder().put("cluster.name", "test")
                .put("xpack.security.user", "login:pass")
                .put("xpack.security.transport.ssl.enabled", "true")
                .build();

        return new PreBuiltTransportClient(settings)
                .addTransportAddress(new TransportAddress(InetAddress.getByName("bah.elk1.com"), port))
                .addTransportAddress(new TransportAddress(InetAddress.getByName("bah.elk2.com"), port))
                .addTransportAddress(new TransportAddress(InetAddress.getByName("bah.elk3.com"), port));
    }


    @Bean
    public ElasticsearchOperations elasticsearchTemplate() throws Exception {
        return new ElasticsearchTemplate(client());
    }
}

This config result:

java.lang.IllegalArgumentException: unknown setting [xpack.security.user] please check that any required plugins are installed, or check the breaking changes documentation for removed settings

I see advice everywhere to use RestHighLevelClient, but how do I create an ElasticsearchOperations bean with it? If I add spring-data-elasticsearch 4.0.0.RELEASE I get java.lang.NoClassDefFoundError: org/springframework/data/elasticsearch/core/ElasticsearchRestTemplate

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.