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
We're missing reflection hints for some of the types that are returned by loggers. They aren't picked up automatically via @Endpoint being @Reflective because they're hidden behind the method's Map<String, Object> return type.
The text was updated successfully, but these errors were encountered:
We should be able to fix this using @RegisterReflectionForBinding({ GroupLoggerLevels.class, SingleLoggerLevels.class }). It doesn't work at the moment as there's a clash with the @Reflective meta-annotation of @Endpoint which causes @RegisterReflectionForBinding's processor to be ignored. I've opened spring-projects/spring-framework#29193.
We wouldn't need all of the hints that @RegisterReflectionForBinding would give us so spring-projects/spring-framework#29194 could be relevant here as well.
We're missing reflection hints for some of the types that are returned by
loggers
. They aren't picked up automatically via@Endpoint
being@Reflective
because they're hidden behind the method'sMap<String, Object>
return type.The text was updated successfully, but these errors were encountered: