Question:
How can I use Spring Expression Language to check that 2 Boolean properties are true?
For example, checking that a single
As far as i remember, You could use this kind of expression:
@ConditionalOnExpression("'${com.property1}'.equals('${com.property2}')")
for further reading here is the link
if it was helpful, please do comment so that my confusion may also get cleared.