You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to upgrade the Spring Boot version of an application from 2.4 to 2.6, I found that the dependency for the ADFS connection actually suffers from some circular dependencies.
declaration. Yet, after removing the field and just using the bean configuration, Spring reported a dependency loop between samlEntryPoint and samlIDPDiscovery that I could not find a patch for.
These are obviously "resolved" by using the configuration
spring.main.allow-circular-references=true
The text was updated successfully, but these errors were encountered:
Trying to upgrade the Spring Boot version of an application from 2.4 to 2.6, I found that the dependency for the ADFS connection actually suffers from some circular dependencies.
At first, I found that the
field clashes with the
declaration. Yet, after removing the field and just using the bean configuration, Spring reported a dependency loop between
samlEntryPoint
andsamlIDPDiscovery
that I could not find a patch for.These are obviously "resolved" by using the configuration
spring.main.allow-circular-references=true
The text was updated successfully, but these errors were encountered: