Ariel Zach

Results 4 comments of Ariel Zach

Hi @ibauersachs, We have a similar problem; in our case, we are using Java 21 and Jooby 1.6.9: ``` Exception in thread "main" java.util.ServiceConfigurationError: java.net.spi.InetAddressResolverProvider: Provider org.xbill.DNS.spi.DnsjavaInetAddressResolverProvider not found at...

App.java ```java package org.example; import org.jooby.Jooby; public class App extends Jooby { { get("/", () -> "Hello World!"); } public static void main(final String[] args) { run(App::new, args); } }...

With version 3.5.3, I'm not having this problem.

By adding the following configuration, I was able to get it to work: ```xml true ``` Thank you