package com.lunhan.xxx.common.config;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.stereotype.Component;
|
|
@Component
|
@ConfigurationProperties(prefix = "spring.redis")
|
public class RedisConfig {
|
private String keyPrefix;
|
|
public String getKeyPrefix() {
|
return keyPrefix;
|
}
|
|
public void setKeyPrefix(String keyPrefix) {
|
this.keyPrefix = keyPrefix;
|
}
|
}
|