Я новичок в java fx, я просто пытаюсь добавить компонент WebView. Таким образом, при каждом добавлении WebView
Intellij возвращается проблема.
Вот вывод:
Caused by: java.lang.RuntimeException: Exception in Application start method
at javafx.graphics/com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:900)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:195)
at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: javafx.fxml.LoadException:
Вот мой пример.fxml:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.web.WebView?>
<GridPane alignment="center" hgap="10" vgap="10" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1" fx:controller="sample.Controller">
<children>
<WebView fx:id="myweb" prefHeight="200.0" prefWidth="200.0" />
</children>
</GridPane>
Вот мой контроллер:
import javafx.fxml.FXML;
import javafx.scene.web.WebView;
public class Controller {
@FXML
private WebView myweb;
}
Если я добавляю другой материал, все работает хорошо, но после добавления WebView
возвращается ошибка.
Также я слышал, что WebView
не поддерживается в jdk11. Это правда?