I\'m using Wildfly 14 and Java 11 in its runtime configuration. When I start the server I get
org.jboss.modules.ModuleNotFoundException: java.se at org.j
There was some change in Java 11 where java.se must be read on the module path. In Wildfly's run configuration under VM arguments add
--add-modules=java.se
Should be fixed in later versions.