Skip to content

Instantly share code, notes, and snippets.

@gauravat16
Created July 9, 2020 12:09
Show Gist options
  • Save gauravat16/364a183e55552d9f1285dc72207dedbd to your computer and use it in GitHub Desktop.
Save gauravat16/364a183e55552d9f1285dc72207dedbd to your computer and use it in GitHub Desktop.
Redisson Config File
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