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
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to process import candidates for configuration class [hu.f400.lifews.api.Application]: Error processing condition on org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration
...
Caused by: java.lang.IllegalArgumentException: No enum constant org.springframework.boot.actuate.endpoint.Access.disabled
...
publicenumAccess {
/** * No access to the endpoint is permitted. */NONE,
/** * Read-only access to the endpoint is permitted. */READ_ONLY,
/** * Unrestricted access to the endpoint is permitted. */UNRESTRICTED;
...
philwebb
changed the title
sprng boot 3.4.0 actuator endpoints access: docs vs code
Reference documentation incorrectly uses 'disabled' rather than 'none' for access restrictions
Dec 2, 2024
i've installed spring boot 3.4.0, and tried to migrate to the new actuator configuration.
e.g. according to the docs:
(copy-pasted)
but when i use this, will get an exception:
and indeed, at Access.java you see:
using these values in my config:
it just works.
The text was updated successfully, but these errors were encountered: