parent
545e942b89
commit
87ccf9689e
@ -0,0 +1,33 @@ |
|||||||
|
package com.dxhy.core.config; |
||||||
|
|
||||||
|
import org.redisson.Redisson; |
||||||
|
import org.redisson.api.RedissonClient; |
||||||
|
import org.redisson.config.Config; |
||||||
|
import org.springframework.beans.factory.annotation.Value; |
||||||
|
import org.springframework.context.annotation.Bean; |
||||||
|
import org.springframework.context.annotation.Configuration; |
||||||
|
|
||||||
|
@Configuration |
||||||
|
public class RedissionConfig { |
||||||
|
|
||||||
|
@Value("${spring.redis.host}") |
||||||
|
private String host; |
||||||
|
|
||||||
|
@Value("${spring.redis.port}") |
||||||
|
private String port; |
||||||
|
|
||||||
|
@Value("${spring.redis.password}") |
||||||
|
private String redisPassword; |
||||||
|
|
||||||
|
@Bean |
||||||
|
public RedissonClient getRedisson(){ |
||||||
|
|
||||||
|
Config config = new Config(); |
||||||
|
//单机模式 依次设置redis地址和密码
|
||||||
|
config.useSingleServer() |
||||||
|
.setAddress("redis://" + host + ":" + port) |
||||||
|
.setPassword(redisPassword); |
||||||
|
return Redisson.create(config); |
||||||
|
} |
||||||
|
} |
||||||
|
|
Loading…
Reference in new issue