SpringIntegration---Redis

1、依赖

<dependency>
    <groupId>org.springframework.integration</groupId>
    <artifactId>spring-integration-redis</artifactId>
    <version>5.2.1.RELEASE</version>
</dependency>

2、Spring Integration uses support provided by another Spring project, Spring Data Redis, which provides typical Spring constructs: ConnectionFactory and Template

  Currently Spring Data Redis supports Jedis and Lettuce.

  The implementations of RedisConnectionFactory provide a set of properties, such as port and host, that you can set if needed.

  Once you have an instance of RedisConnectionFactory, you can create an instance of RedisTemplate and inject it with the RedisConnectionFactory.

猜你喜欢

转载自www.cnblogs.com/anpeiyong/p/11837827.html