gpt4 book ai didi

java - 调用 Stage.show() 引发无法捕获的异常

转载 作者:行者123 更新时间:2023-12-01 17:49:35 31 4
gpt4 key购买 nike

编辑:我很幸运,James_D 很快就在下面的评论中发现并解释了这一现象。现在找到了使用 PropertyValueFactory 的替代方案(对于 Groovy 用户)我想我应该添加自己的答案,以帮助任何不幸的人在未来对此感到困惑。

<小时/>

规范 Java:11。操作系统:Linux Mint 18.3。所有这些应用程序和测试代码都是用 Groovy (2.5.10) 编写的,但这不应该特别相关(即,用 Java 编写的等效项目应该会发生相同的现象)。

我有一个从 App.start() 调用的方法哪里App延伸javafx.application.Application (因此它在 JAT/JavaFX 应用程序线程中运行):

class GraphBuilder {
...
def attachAndShow(Stage stage, Node rootNode) {
try {
App.instance.fxmlController.treeTableView.root = rootTreeItem
App.instance.fxmlController.treeTableView.showRoot = false
stage.scene = new Scene(rootNode, 1200, 800)
stage.show()
}catch( Throwable t ){
log.error( "got throwable in attachAndShow... $t.message", t )
}
}

我正在 TDD 的“尖峰”模型(未经测试的代码,我只是跑在前面)上前进,其中 TreeTableView被填充。我强调,没有迹象表明尖峰有任何问题。

这样做的本质是设置 TreeTableView的“单元格值工厂”列,它规定了类实例的字段名称,该类实例的字段名称将被设置为TreeItem的值。 s。

值类称为 Task ...其第一个字段是 String title 。我为此添加了第一个工厂。但是(因为我正在按 TDD 进行)我已经添加了第二列的工厂,属性 dueDate ,但我尚未将此字段包含在 Task 中。当然,确保工厂已设置且属性名称正确的测试会失败。但我更感兴趣的是当我执行 Gradle installDist 时会发生什么(即分发一个独立的可执行文件)此时。

运行:显示窗口。我可以看到 TreeItem s 已被赋予正确的头衔。在终端中,我看到由于我未能在 dueDate 中包含必填字段 ( Task ) 而导致的堆栈跟踪实例:

Mar 23, 2020 6:16:25 PM javafx.scene.control.cell.TreeItemPropertyValueFactory getCellDataReflectively
WARNING: Can not retrieve property 'dueDate' in TreeItemPropertyValueFactory: javafx.scene.control.cell.TreeItemPropertyValueFactory@2d1e69d0 with provided class type: class core.Task
java.lang.IllegalStateException: Cannot get property dueDate
at com.sun.javafx.property.PropertyReference.getProperty(PropertyReference.java:194)
at javafx.scene.control.cell.TreeItemPropertyValueFactory.getCellDataReflectively(TreeItemPropertyValueFactory.java:185)
at javafx.scene.control.cell.TreeItemPropertyValueFactory.call(TreeItemPropertyValueFactory.java:158)
at javafx.scene.control.cell.TreeItemPropertyValueFactory.call(TreeItemPropertyValueFactory.java:136)
at javafx.scene.control.TreeTableColumn.getCellObservableValue(TreeTableColumn.java:576)
at javafx.scene.control.TreeTableColumn.getCellObservableValue(TreeTableColumn.java:561)
at javafx.scene.control.TreeTableCell.updateItem(TreeTableCell.java:632)
at javafx.scene.control.TreeTableCell.indexChanged(TreeTableCell.java:457)
at javafx.scene.control.IndexedCell.updateIndex(IndexedCell.java:120)
at javafx.scene.control.skin.TableRowSkinBase.updateCells(TableRowSkinBase.java:539)
at javafx.scene.control.skin.TreeTableRowSkin.updateCells(TreeTableRowSkin.java:276)
at javafx.scene.control.skin.TableRowSkinBase.<init>(TableRowSkinBase.java:159)
at javafx.scene.control.skin.TreeTableRowSkin.<init>(TreeTableRowSkin.java:102)
at javafx.scene.control.TreeTableRow.createDefaultSkin(TreeTableRow.java:529)
at javafx.scene.control.Control.doProcessCSS(Control.java:897)
at javafx.scene.control.Control.access$000(Control.java:83)
at javafx.scene.control.Control$1.doProcessCSS(Control.java:89)
at com.sun.javafx.scene.control.ControlHelper.processCSSImpl(ControlHelper.java:67)
at com.sun.javafx.scene.NodeHelper.processCSS(NodeHelper.java:145)
at javafx.scene.Node.processCSS(Node.java:9529)
at javafx.scene.Node.applyCss(Node.java:9616)
at javafx.scene.control.skin.VirtualFlow.setCellIndex(VirtualFlow.java:1715)
at javafx.scene.control.skin.VirtualFlow.getCell(VirtualFlow.java:1692)
at javafx.scene.control.skin.VirtualFlow.getCellLength(VirtualFlow.java:1801)
at javafx.scene.control.skin.VirtualFlow.computeViewportOffset(VirtualFlow.java:2639)
at javafx.scene.control.skin.VirtualFlow.layoutChildren(VirtualFlow.java:1245)
at javafx.scene.Parent.layout(Parent.java:1204)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Parent.layout(Parent.java:1211)
at javafx.scene.Scene.doLayoutPass(Scene.java:576)
at javafx.scene.Scene.preferredSize(Scene.java:1748)
at javafx.scene.Scene$2.preferredSize(Scene.java:393)
at com.sun.javafx.scene.SceneHelper.preferredSize(SceneHelper.java:66)
at javafx.stage.Window$12.invalidated(Window.java:1086)
at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:110)
at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:145)
at javafx.stage.Window.setShowing(Window.java:1174)
at javafx.stage.Window.show(Window.java:1189)
at javafx.stage.Stage.show(Stage.java:273)
at javafx.stage.Stage$show.call(Unknown Source)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:47)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:115)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:119)
at core.GraphBuilder.attachAndShow(main.groovy:111)
at core.GraphBuilder$attachAndShow$4.call(Unknown Source)
at org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:47)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:115)
at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:135)
at core.App.start(main.groovy:56)
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$9(LauncherImpl.java:846)
at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$12(PlatformImpl.java:455)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$10(PlatformImpl.java:428)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.application.PlatformImpl.lambda$runLater$11(PlatformImpl.java:427)
at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:96)
at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
at com.sun.glass.ui.gtk.GtkApplication.lambda$runLoop$11(GtkApplication.java:277)
at java.base/java.lang.Thread.run(Thread.java:834)

这个Throwable ( IllegalStateRuntimeException )不会陷入上面的 try ... catch 中。为什么不?有什么方法可以捕获此类异常吗?

这显然是 JAT:您可以看到 App.start()在该堆栈跟踪中(以及 GraphBuilder.attachAndShow() )

我刚刚做了几个实验:首先扔一个 RuntimeException然后是标准Exception在这个attachAndShow()方法,在方法中任意 4 行之前

在这两种情况下,(分布式)应用程序都无法运行,并且没有显示任何内容...但是日志消息确实被记录了,即这些都被捕获了。完全符合预期的行为,因此看来 JAT 本身并不是“罪魁祸首”。

我还注意到,上面显示的跟踪不是“正常”堆栈跟踪:前两行表明有东西正在处理它,而且不幸的是,它似乎正在吞噬它。至少我希望能够记录此类问题!

最佳答案

基本答案是here .

Groovy 用户可以沾沾自喜地穿过广阔的尖括号森林:我的解决方案变成了:

fxmlController.treeTableView.columns.get( 0 ).cellValueFactory =
new Callback() {
@Override
Binding call(Object cellDataFeatures ) {
// NB it turns out that the first "value" is a TreeItem
Task task = cellDataFeatures.value.value
Bindings.createStringBinding({ task.title })
}
}

或者将一些最小的内容放入其中:

fxmlController.treeTableView.columns.get( 0 ).cellValueFactory =
new Callback<TreeTableColumn.CellDataFeatures, ObservableValue>() {
@Override
Binding call(TreeTableColumn.CellDataFeatures cellDataFeatures ) {
Task task = cellDataFeatures.value.value
Bindings.createStringBinding({ task.title })
}
}

对于 Groovy“Java lambda”替代品,我们使用闭包也就不足为奇了:

fxmlController.treeTableView.columns.get( 0 ).cellValueFactory 
= { cellDataFeatures -> cellDataFeatures.value.titleProperty() }

注意,这涉及对 JavaFX Property 的一些了解(请参阅 here )以及对显示实例的类的一些定制。

关于java - 调用 Stage.show() 引发无法捕获的异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60819363/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com