如何使用spring-data-solr为solr添加基本Auth?

时间:2019-09-09 21:05:05

标签: spring-boot solr

我在Spring Boot中创建了我的应用程序,并使用solr作为数据库。在使用spring-data-solr连接solr的应用程序中,需要使用spring-data-solr从应用程序对solr实现基本的Auth。

我没有看到任何示例。反正有实现吗?

@Configuration
@EnableSolrRepositories(basePackages = { "com.test.org" })
public class SolrAuth {

@Value("${solr.username}")
private String username;

@Value("${solr.password}")
private String password;

@Bean
SolrTemplate solrTemplate() {
    return new SolrTemplate(solrClientFactory());
}

@Bean
SolrClientFactory solrClientFactory() {
    Credentials credentials = new UsernamePasswordCredentials("username", "password");
    return new HttpSolrClientFactory(solrServer(), credentials, "BASIC");
}

@Bean
SolrClient solrServer() {
    return new HttpSolrClient.Builder("http://localhost:8983/solr").build();
}
}

想使用spring-data-solr库通过Basic Auth与solr建立连接。

2 个答案:

答案 0 :(得分:0)

此代码最适合我。

@Configuration
@EnableSolrRepositories(basePackages = { "com.test.org" })
public class SolrAuth {

    @Value("${solr.username}")
    private String username;

    @Value("${solr.password}")
    private String password;

    @Value("${solr.url}")
    private String solrUrl;

    @Bean
    public SolrClient solrClient() {
        return new HttpSolrClient(solrUrl);
    }

    @Bean
    public SolrTemplate solrTemplate(SolrClient client) throws SolrException { 
        return new SolrTemplate(client);
    }   

    @Bean
    public SolrClientFactory solrClientFactory(final SolrClient solrClient){
        Credentials credentials = new UsernamePasswordCredentials(username, password);
        return new HttpSolrClientFactory(solrClient, credentials, "BASIC");
    }
}

答案 1 :(得分:0)

看起来您正在将用户名设置为“用户名”,将密码设置为“密码”,而不是使用类字段用户名和密码。尝试删除评论,以便您的凭据行如下所示:

凭据凭据=新的UsernamePasswordCredentials(用户名,密码);