Consider possibility exclude PropertySourcesPlaceholderConfigurer in RedisHttpSessionConfiguration in version 1.3.x #1259
Labels
for: stack-overflow
A question that's better suited to stackoverflow.com
Uh oh!
There was an error while loading. Please reload this page.
Conditions:
We used spring-session module of version 1.1.x. And we had own
PropertySourcesPlaceholderConfigurer
bean with fieldignoreUnresolvablePlaceholders=true
configured with<context:property-placeholder ignore-unresolvable="true">
Issue:
We had to upgrade spring-session to 1.3.x version. We did it and we tried to run application but we got exception, because our unresolved properties were failed. It happened because there is
RedisHttpSessionConfiguration
in 1.3.x version and this configuration declaresPropertySourcesPlaceholderConfigurer
bean with fieldignoreUnresolvablePlaceholders = false
.Could you consider possibility exclude or make optional bean
PropertySourcesPlaceholderConfigurer
in classRedisHttpSessionConfiguration
in spring-session module of 1.3.x version?The text was updated successfully, but these errors were encountered: