-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
jfx17
-
x86_64
-
windows_10
A DESCRIPTION OF THE PROBLEM :
I have a SpringBoot Application that uses JavaFx and i added a Discord Oauth Authentication. It's working fine when i run it in Eclipse, but as soon as i create the Spring Fat Jar and run in on command line i get a segmentation fault.
I first thought that https://bugs.openjdk.java.net/browse/JDK-8242361 might be the same, but as far as i have seen that bug should be fixed in javafx-web 17-ea+7, which i use and i still get segmenation faults.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Load the Discord OAuth authorization website in a WebView inside a Spring fat jar.
Example URL
https://discord.com/oauth2/authorize?response_type=code&client_id=10&scope=identify&redirect_uri=https://www.blub.de/
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Authorization Page is shown in the WebView
ACTUAL -
Application crashs with a Segmentation Fault
---------- BEGIN SOURCE ----------
I made a little maven project to create the fat jar, which give me segmentation fault all the time when i call it https://github.com/tiramon/javafx_segfault
@Override
public void start(Stage primaryStage) throws Exception {
WebView wv = new WebView();
wv.setContextMenuEnabled(false);
WebEngine we = wv.getEngine();
String authUrl = "https://discord.com/oauth2/authorize?response_type=code&client_id=10&scope=identify&redirect_uri=https://www.blub.de/";
we.load(authUrl);
Scene scene = new Scene(wv, 500, 750);
primaryStage.setScene(scene);
primaryStage.show();
}
---------- END SOURCE ----------
FREQUENCY : always
I have a SpringBoot Application that uses JavaFx and i added a Discord Oauth Authentication. It's working fine when i run it in Eclipse, but as soon as i create the Spring Fat Jar and run in on command line i get a segmentation fault.
I first thought that https://bugs.openjdk.java.net/browse/JDK-8242361 might be the same, but as far as i have seen that bug should be fixed in javafx-web 17-ea+7, which i use and i still get segmenation faults.
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Load the Discord OAuth authorization website in a WebView inside a Spring fat jar.
Example URL
https://discord.com/oauth2/authorize?response_type=code&client_id=10&scope=identify&redirect_uri=https://www.blub.de/
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Authorization Page is shown in the WebView
ACTUAL -
Application crashs with a Segmentation Fault
---------- BEGIN SOURCE ----------
I made a little maven project to create the fat jar, which give me segmentation fault all the time when i call it https://github.com/tiramon/javafx_segfault
@Override
public void start(Stage primaryStage) throws Exception {
WebView wv = new WebView();
wv.setContextMenuEnabled(false);
WebEngine we = wv.getEngine();
String authUrl = "https://discord.com/oauth2/authorize?response_type=code&client_id=10&scope=identify&redirect_uri=https://www.blub.de/";
we.load(authUrl);
Scene scene = new Scene(wv, 500, 750);
primaryStage.setScene(scene);
primaryStage.show();
}
---------- END SOURCE ----------
FREQUENCY : always
- duplicates
-
JDK-8263788 JavaFX application freezes completely after some time when using the WebView
-
- Closed
-
- relates to
-
JDK-8242361 JavaFX Web View crashes with Segmentation Fault, when HTML contains Data-URIs
-
- Resolved
-