My problem is that every time I run sbt run
, the server works until I refresh the page. After that, I get this in my terminal
Uncaught error from thread [play-dev-mode-akka.actor.default-dispatcher-3]: javax/xml/bind/DatatypeConverter, shutting down JVM since 'akka.jvm-exit-on-fatal-error' is enabled for for ActorSystem[play-dev-mode]
java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter
Since there's not much ressources about play and scala on the web, I really need guidance for this.
javaOptions in Universal ++= "--add-modules=java.xml.bind"
and it compiles, but doesn't run. – Aquifer