My project contains a WebView with html and JS resources. When I launch my .jar file, the WebView remains blank, instead of showing a JS map.
Java Code for loading the html:
bridge = BridgeSingleton.getInstance();
WebEngine engine = webviewmap.getEngine();
URL urlHello = getClass().getResource("/map/map.html");
engine.load(urlHello.toExternalForm());
The html and JS files are stored in "resources" folder. When the program is launched in Eclipse, it works fine, but not in .jar version.
Any idea about the issue?