|
|
@ -58,7 +58,8 @@ abstract class AbstractSessionCondition extends SpringBootCondition {
|
|
|
|
return binder.bind("spring.session.store-type", StoreType.class)
|
|
|
|
return binder.bind("spring.session.store-type", StoreType.class)
|
|
|
|
.map((t) -> new ConditionOutcome(t == required,
|
|
|
|
.map((t) -> new ConditionOutcome(t == required,
|
|
|
|
message.found("spring.session.store-type property").items(t)))
|
|
|
|
message.found("spring.session.store-type property").items(t)))
|
|
|
|
.orElse(ConditionOutcome.noMatch(message.didNotFind("spring.session.store-type property").atAll()));
|
|
|
|
.orElseGet(() -> ConditionOutcome
|
|
|
|
|
|
|
|
.noMatch(message.didNotFind("spring.session.store-type property").atAll()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (BindException ex) {
|
|
|
|
catch (BindException ex) {
|
|
|
|
return ConditionOutcome.noMatch(message.found("invalid spring.session.store-type property").atAll());
|
|
|
|
return ConditionOutcome.noMatch(message.found("invalid spring.session.store-type property").atAll());
|
|
|
|