我在 Eclipse Photon 2018-12 中使用 OpenJDK 11 + OpenJavafx 11 环境,并在 eclipse 中创建了一个插件 GUI 项目。我的目标是在 SWT 部件上添加 OpenJavafx 组件(按钮)。
这些是我在 SWT 部分顶部呈现 javafx 按钮的步骤
应用程序 e4xmi 视图:
有两个插件使用
1. com.rcp.main - 主 RCP 应用程序,在主插件的部分堆栈上有两个部分。
第 1 部分(示例第 1 部分:类 URI bundleclass://com.rcp.main/com.rcp.main.parts.SamplePart)使用从下图的 eclipse 模板创建的纯 SWT 渲染。它按预期工作。
第 2 部分(示例第 2 部分:类 URI bundleclass://com.rcp.main/com.rcp.main.parts.SamplePart1)在 SWT 部分上使用开放的 Javafx GUI 组件(按钮)呈现。我从下图中得到一个空的异常
2. com.rcp.feature - 该功能包括带有com.rcp.main和org.eclipse.fx.osgi的插件
产品文件中的 VM 参数:
-Dorg.osgi.framework.bundle.parent=ext -Dosgi.framework.extensions=org.eclipse.fx.osgi --module-path "C:\Program Files\Java\javafx-sdk-11.0.1\lib" --add-modules javafx.base,javafx.controls,javafx.graphics --add-modules ALL-MODULE-PATH
public class SamplePart {
private TableViewer tableViewer;
@Inject
private MPart part;
@PostConstruct
public void createComposite(Composite parent) {
parent.setLayout(new GridLayout(1, false));
Text txtInput = new Text(parent, SWT.BORDER);
txtInput.setMessage("Enter text to mark part as dirty");
txtInput.addModifyListener(e -> part.setDirty(true));
txtInput.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
tableViewer = new TableViewer(parent);
tableViewer.setContentProvider(ArrayContentProvider.getInstance());
tableViewer.setInput(createInitialDataModel());
tableViewer.getTable().setLayoutData(new GridData(GridData.FILL_BOTH));
}
@Focus
public void setFocus() {
tableViewer.getTable().setFocus();
}
@Persist
public void save() {
part.setDirty(false);
}
private List<String> createInitialDataModel() {
return Arrays.asList("Sample item 1", "Sample item 2", "Sample item 3", "Sample item 4", "Sample item 5");
}
}
public class SamplePart1 {
@Inject
private MPart part;
@PostConstruct
public void createComposite(Composite parent) {
final FXCanvas fxCanvas = new FXCanvas(parent, SWT.NONE);
fxCanvas.setLayout(new GridLayout(1, true));
try {
Button btn = new Button();
btn.setText("Say 'Hello World'");
StackPane root = new StackPane();
root.getChildren().add(btn);
Scene scene = new Scene(root);
fxCanvas.setScene(scene);
} catch (Exception e1) {
}
}
@PreDestroy
@Inject
private void disposeARView(MWindow window, EModelService modelService) {
}
@Focus
public void setFocus() {
}
@Persist
public void save() {
}
}
当我单击零件堆栈上的第 2 部分选项卡时出现此异常
结果:
第 2 部分中的空白屏幕
!ENTRY org.eclipse.e4.ui.workbench 4 0 2019-02-05 09:55:46.956
!MESSAGE Unable to create class 'com.rcp.main.parts.SamplePart1' from bundle '82'
!STACK 0
org.eclipse.e4.core.di.InjectionException: java.lang.NoClassDefFoundError: org/eclipse/swt/widgets/Canvas
Caused by: java.lang.NoClassDefFoundError: org/eclipse/swt/widgets/Canvas
at java.base/java.lang.ClassLoader.defineClass1(Native Method)
at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1016)
at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1095)
Caused by: java.lang.ClassNotFoundException: org.eclipse.swt.widgets.Canvas
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521)