A code snippet for a specific case
@Configuration
@NewEnableRedisHttpSession(maxInactiveIntervalInSeconds = 900)
@Import({RedisConfiguration.class})
Here is a annotation value: maxInactiveIntervalInSeconds = 900
@NewEnableRedisHttpSession(maxInactiveIntervalInSeconds = 900)
I want to configure it like
@NewEnableRedisHttpSession("${maxInactiveIntervalInSeconds}")
some configuration file will give the value
maxInactiveIntervalInSeconds = 900