gpt4 book ai didi

spring-boot - RedisMessageListenerContainer : Connection failure occurred. 5000 毫秒后重新启动订阅任务

转载 作者:行者123 更新时间:2023-12-05 04:59:59 36 4
gpt4 key购买 nike


@Configuration
public class RedisConfig {

@Bean
JedisConnectionFactory jedisConnectionFactory() {
return new JedisConnectionFactory();
}

@Bean
public RedisTemplate<String, Object> redisTemplate() {
final RedisTemplate<String, Object> template = new RedisTemplate<String, Object>();
template.setConnectionFactory(jedisConnectionFactory());
template.setValueSerializer(new GenericToStringSerializer<Object>(Object.class));
return template;
}

@Bean
MessageListenerAdapter messageListener() {
return new MessageListenerAdapter(new MessageSubscriber());
}

@Bean
RedisMessageListenerContainer redisContainer() {
final RedisMessageListenerContainer container = new RedisMessageListenerContainer();
container.setConnectionFactory(jedisConnectionFactory());
container.addMessageListener(messageListener(), topic());
return container;
}

@Bean
MessagePublisher redisPublisher() {
return new MessagePublisherImpl(redisTemplate(), topic());
}

@Bean
ChannelTopic topic() {
return new ChannelTopic("pubsub:queue");
}

}

用于 Docker 容器

bind 0.0.0.0
protected-mode yes
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
pidfile /var/run/redis/redis-server.pid
loglevel notice
logfile /data/log/redis-server.log
databases 16
always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir /data/bases
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no
appendonly yes
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble no
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
aof-rewrite-incremental-fsync yes

docker-compose.yml

redis:
image: redis
container_name: redis
restart: always
volumes:
- //projects/spring-data-redis-example/src/main/resources/docker/redis/storage:/opt/redis/data/bases
- //projects/spring-data-redis-example/src/main/resources/docker/redis/conf/redis.conf:/usr/local/etc/redis/redis.conf
- //projects/spring-data-redis-example/src/main/resources/docker/redis/log/redis-server.log:/opt/redis/logs/redis-server.log
ports:
- 6379:6379

docker-machine 的 IP = 192.168.99.109

  • 应用程序属性
spring.redis.host=192.168.99.109
spring.redis.port=6379

  • pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>redis</groupId>
<artifactId>spring-data-redis-example</artifactId>
<version>0.0.1</version>
<packaging>jar</packaging>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>

<version.mapstruct>1.3.0.Final</version.mapstruct>
<version.apache.maven.plugins>3.8.1</version.apache.maven.plugins>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.3.0</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.8.1</version>
</dependency>


<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>


<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${version.mapstruct}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.apache.maven.plugins}</version>
<groupId>org.apache.maven.plugins</groupId>

<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>${version.mapstruct}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>


</plugins>
</build>


</project>

enter image description here

enter image description here

enter image description here

2020-08-09 12:57:07.083 ERROR 129008 --- [edisContainer-1]o.s.d.r.l.RedisMessageListenerContainer : Connection failureoccurred. Restarting subscription task after 5000 ms 2020-08-0912:57:11.034 INFO 129008 --- [ main]redis.RedisExampleApplication : StartedRedisExampleApplication in 8.344 seconds (JVM running for 9.297)2020-08-09 12:57:13.083 ERROR 129008 --- [edisContainer-2]o.s.d.r.l.RedisMessageListenerContainer : Connection failure

当我尝试将数据保存到基本 Redis 中时,出现异常..

enter image description here

Update-1

enter image description here

  • pom.xml
    <dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>5.3.3.RELEASE</version>
</dependency>

Update_2

@Configuration
public class RedisConfig {

@Bean
LettuceConnectionFactory lettuceConnectionFactory() {
return new LettuceConnectionFactory();
}

@Bean
public RedisTemplate<String, Object> redisTemplate() {
final RedisTemplate<String, Object> template = new RedisTemplate<>();
template.setConnectionFactory(lettuceConnectionFactory());
template.setValueSerializer(new GenericToStringSerializer<>(Object.class));
return template;
}

/**
* <b>MessageSubscriber</b> is a implementation
* of {@link org.springframework.data.redis.connection.MessageListener}
* The MessageSubscriber is developed in the app
* @return
* @return
*/
@Bean
MessageListenerAdapter messageListener() {
return new MessageListenerAdapter(new MessageSubscriber());
}


@Bean
RedisMessageListenerContainer redisContainer() {

final RedisMessageListenerContainer container = new RedisMessageListenerContainer();
container.setConnectionFactory(lettuceConnectionFactory());
container.addMessageListener(messageListener(), topic());
return container;
}

/**
<b>MessagePublisherImpl</b> is a implementation of {@link redis.service.message.MessagePublisher}
* The MessagePublisher is developed in the application
* @return
*/
@Bean
MessagePublisher redisPublisher() {

return new MessagePublisherImpl(redisTemplate(), topic());
}

@Bean
ChannelTopic topic() {
return new ChannelTopic("pubsub:queue");
}
}
  • pom.xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

<!-- <dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.3.0</version>
</dependency>-->


<!-- <dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.8.1</version>
</dependency>-->


<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>5.3.3.RELEASE</version>
</dependency>

<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>${version.mapstruct}</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

但是,有一个错误:

enter image description here

在 Debug模式下:

enter image description here

为什么是“本地主机”?

我指向 (192.168.99.100):

spring.redis.host=192.168.99.100
spring.redis.port=6379

如何自定义-redis服务器的IP到配置文件?

更新 3

它正在工作。

@Configuration
public class RedisConfig {

@Value("${spring.redis.host}")
private String hostName;

@Value("${spring.redis.database}")
private int indexDataBase;

@Bean
LettuceConnectionFactory lettuceConnectionFactory() {

RedisStandaloneConfiguration redisStandaloneConfiguration = new RedisStandaloneConfiguration();

redisStandaloneConfiguration.setHostName(this.hostName);

redisStandaloneConfiguration.setDatabase(this.indexDataBase);

LettuceConnectionFactory lettuceConnectionFactory =
new LettuceConnectionFactory(redisStandaloneConfiguration);


return lettuceConnectionFactory;
}

@Bean
public RedisTemplate<String, Object> redisTemplate() {

final RedisTemplate<String, Object> template = new RedisTemplate<>();

template.setConnectionFactory(lettuceConnectionFactory());

template.setKeySerializer(new GenericToStringSerializer<>(Object.class));
template.setValueSerializer(new Jackson2JsonRedisSerializer<>(Object.class));

return template;
}

/**
* <b>MessageSubscriber</b> is a implementation
* of {@link org.springframework.data.redis.connection.MessageListener}
* The MessageSubscriber is developed in the app
* @return
*/
@Bean
MessageListenerAdapter messageListener() {
return new MessageListenerAdapter(new MessageSubscriber());
}


@Bean
RedisMessageListenerContainer redisContainer() {

final RedisMessageListenerContainer container = new RedisMessageListenerContainer();
container.setConnectionFactory(lettuceConnectionFactory());
container.addMessageListener(messageListener(), topic());
return container;
}

/**
* <b>MessagePublisherImpl</b> is a implementation of {@link redis.service.message.MessagePublisher}
* The MessagePublisher is developed in the application
* @return
*/
@Bean
MessagePublisher redisPublisher() {

return new MessagePublisherImpl(redisTemplate(), topic());
}

@Bean
ChannelTopic topic() {
return new ChannelTopic("pubsub:queue");
}
}

我已经配置了配置文件,但是当我启动它的时候,我得到一个连接失败的错误。 Redis 在 docker 中运行。

有没有人知道如何纠正这个问题?

enter image description here

最佳答案

你的配置适合我。不知道为什么。

不过,你可以试试Lettuce .

为此交换您的配置文件,看看是否有效。

@Configuration
public class RedisConfig {

@Bean
LettuceConnectionFactory lettuceConnectionFactory() {
return new LettuceConnectionFactory();
}

@Bean
public RedisTemplate<String, Object> redisTemplate() {
final RedisTemplate<String, Object> template = new RedisTemplate<String, Object>();
template.setConnectionFactory(lettuceConnectionFactory());
template.setValueSerializer(new GenericToStringSerializer<Object>(Object.class));
return template;
}

@Bean
MessageListenerAdapter messageListener() {
return new MessageListenerAdapter(new RedisMessageSubscriber());
}

@Bean
RedisMessageListenerContainer redisContainer() {
final RedisMessageListenerContainer container = new RedisMessageListenerContainer();
container.setConnectionFactory(lettuceConnectionFactory());
container.addMessageListener(messageListener(), topic());
return container;
}

@Bean
MessagePublisher redisPublisher() {
return new RedisMessagePublisher(redisTemplate(), topic());
}

@Bean
ChannelTopic topic() {
return new ChannelTopic("pubsub:queue");
}

关于spring-boot - RedisMessageListenerContainer : Connection failure occurred. 5000 毫秒后重新启动订阅任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63324978/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com