赞
踩
第一:
先看你的pom文件是否用了redis
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
如果在同时使用elastic search,请加上版本号
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <version>2.0.4.RELEASE</version>
- </dependency>
如果启动还是报错, 请尝试在Application.class类中加上一句:
System.setProperty("es.set.netty.runtime.available.processors", "false");
- public class SpringBootTestApplication extends SpringBootServletInitializer {
-
- public static void main(String[] args) throws Exception {
- System.setProperty("es.set.netty.runtime.available.processors", "false");
- SpringApplication.run(SpringBootTestApplication.class, args);
- }
- }
第二:根据你的es版本,是否需要客户端pom , 请看API-JAVA-ES官方网站
类似的加入:
- <dependency>
- <groupId>org.elasticsearch.client</groupId>
- <artifactId>transport</artifactId>
- <version>5.6.10</version>
- </dependency>
第三:你的elastic客户端和服务端版本是否一致? 去maven仓库看你依赖对应的版本,保持一致即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。