Мой вопрос очень похож на этот: Подавление журналов из AppClassLoader
Разница в том, что я использую AspectJ с Spring Boot (через @EnableAspectJAutoProxy
и @EnableLoadTimeWeaving(aspectjWeaving = ENABLED)
аннотации), поэтому у меня нет ни META-INF/aop.xml
, ни META-INF/aop-ajc.xml
файлов, которые упомянуты в ответе.
Как отключить эти надоедливые предупреждения AppClassLoader с помощью конфигурации на основе аннотаций?
Обновление Просто чтобы уточнить, я говорю о таких журналах:
...
[AppClassLoader@18b4aac2] error can't determine implemented interfaces of missing type org.springframework.cache.ehcache.EhCacheCacheManager
when weaving type org.springframework.boot.autoconfigure.cache.EhCacheCacheConfiguration
when weaving classes
when weaving
[Xlint:cantFindType]
[AppClassLoader@18b4aac2] error can't determine implemented interfaces of missing type org.springframework.cache.ehcache.EhCacheCacheManager
when weaving type org.springframework.boot.autoconfigure.cache.EhCacheCacheConfiguration
when weaving classes
when weaving
[Xlint:cantFindType]
[AppClassLoader@18b4aac2] error can't determine implemented interfaces of missing type org.springframework.cache.ehcache.EhCacheCacheManager
when weaving type org.springframework.boot.autoconfigure.cache.EhCacheCacheConfiguration
when weaving classes
when weaving
...
Они напечатаны красным цветом, и их ОЧЕНЬ много.Поэтому я хочу как-то подавить эти логи.