spring核心配置文件_Elasticsearch搜索配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring核心配置文件_Elasticsearch搜索配置相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:context="http://www.springframework.org/schema/context"
 xmlns:elasticsearch="http://www.springframework.org/schema/data/elasticsearch"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
 http://www.springframework.org/schema/beans/spring-beans.xsd
 http://www.springframework.org/schema/context
 http://www.springframework.org/schema/context/spring-context.xsd
 http://www.springframework.org/schema/data/elasticsearch
 http://www.springframework.org/schema/data/elasticsearch/spring-elasticsearch-1.0.xsd">
    <!-- 扫描DAO -->
    <elasticsearch:repositories base-package="cn.itcast.bos.index" />

 <elasticsearch:transport-client id="client" cluster-nodes="127.0.0.1:9300" />
 
 <bean id="elasticsearchTemplate" class="org.springframework.data.elasticsearch.core.ElasticsearchTemplate">
  <constructor-arg name="client" ref="client" />
 </bean>
 
 
</beans>















以上是关于spring核心配置文件_Elasticsearch搜索配置的主要内容,如果未能解决你的问题,请参考以下文章

spring核心配置文件_ActiveMQ消息队列配置

spring核心配置文件_Quartz定时任务调度配置

spring核心配置文件_webService的服务器配置

[刘阳Java]_Spring AOP基于XML配置介绍_第9讲

Spring学习的报错____1.Type interface com.xbf.dao.UserDao is not known to the MapperRegistry.

Spring_框架环境搭建