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
...
public enum Access {
/**
* 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;
...
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.