Created
July 9, 2020 12:09
-
-
Save gauravat16/364a183e55552d9f1285dc72207dedbd to your computer and use it in GitHub Desktop.
Redisson Config File
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package gaurav.examples.redis.bloomfilter.config; | |
import lombok.Data; | |
import org.springframework.boot.context.properties.ConfigurationProperties; | |
import org.springframework.stereotype.Component; | |
@Component | |
@ConfigurationProperties("redisson") | |
@Data | |
public class RedissonConfig { | |
private String redisUrl; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment