Fix: JAXB NoClassDefFoundError on Java 9+ (#218)

JAXB APIs are considered to be a part of Java EE and was removed by default in Java SE 9.
See: https://stackoverflow.com/a/47412779/6238618
This commit is contained in:
Andy Li
2020-04-28 16:31:30 +08:00
committed by GitHub
parent d6984fa450
commit b91d3e71ce
2 changed files with 2 additions and 1 deletions

View File

@@ -340,7 +340,7 @@ public class Server extends Thread implements HostnameVerifier, X509TrustManager
script += jobData.getRenderTask().getScript();
String validationUrl = URLDecoder.decode(jobData.getRenderTask().getValidationUrl());
String validationUrl = URLDecoder.decode(jobData.getRenderTask().getValidationUrl(), "UTF-8");
Job a_job = new Job(
this.user_config,