I use spring-boot-2.0.0 with korlin and mongodb, I...
# spring
n
I use spring-boot-2.0.0 with korlin and mongodb, I get this warning every time I start up application,
org.reflections.ReflectionsException: could not create Vfs.Dir from url, no matching UrlType was found [file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/libatk-wrapper.so]
I read it's nothing too serious, application is working fine. But why is it there ? How can I disable this warning ?
h
1 Minute of googleing: I don't think this has anything to do with Kotlin or Spring. It's this ancient Gnome library: http://rpmfind.net/linux/RPM/centos/7.4.1708/x86_64/Packages/java-atk-wrapper-0.30.4-5.el7.i686.html You could probably just uninstall that package (unless you're using the Gnome Accessibility Toolkit with a Java Swing App).
n
@hho What exactly did you google ?
h
libatk-wrapper.so
n
Hey,
sudo apt remove libatk-wrapper-java
solved it. Thanks.