gpt4 book ai didi

java - 使用@DefaultProperty 时为 "Element does not define a default property"

转载 作者:行者123 更新时间:2023-11-30 06:49:00 29 4
gpt4 key购买 nike

我正在尝试创建一个用于 FXML 的自定义 JavaFX 元素,但是当 FXMLLoader 尝试解析它时,它会抛出一个异常,指出:

javafx.fxml.LoadException: Element does not define a default property.

但是,经过一些研究后,我相信我正确定义了默认属性。

如果我包含 nestedCellValueFactory 标签,一切都会按预期工作。

Java

@DefaultProperty("nestedCellValueFactory")
public class NestablePropertyValueFactory<S, T> extends PropertyValueFactory<S, T> {

private ObjectProperty<PropertyValueFactory<?, ?>> nestedCellValueFactory;

public NestablePropertyValueFactory(
@NamedArg("property") String property,
@NamedArg("nestedCellValueFactory") PropertyValueFactory<?, ?> nestedCellValueFactory) {
super(property);
this.nestedCellValueFactory = new SimpleObjectProperty<>(this, "nestedCellValueFactory", nestedCellValueFactory);
}

public final ObjectProperty<PropertyValueFactory<?, ?>> nestedCellValueFactoryProperty() {
return nestedCellValueFactory;
}

public final PropertyValueFactory<?, ?> getNestedCellValueFactory() {
return nestedCellValueFactoryProperty().get();
}

public final void setNestedCellValueFactory(PropertyValueFactory<?, ?> nestedCellValueFactory) {
nestedCellValueFactoryProperty().set(nestedCellValueFactory);
}

}

FXML

<NestablePropertyValueFactory property="outer">
<NestablePropertyValueFactory property="inner">
<PropertyValueFactory property="property"/>
</NestablePropertyValueFactory>
</NestablePropertyValueFactory>

最佳答案

经过一些调试,我找到了错误的可能解释,但遗憾的是没有解决方案。

如果你在没有 <nestedCellValueFactory> 的情况下运行标签,正如您已经报告的那样,您将收到此异常:

Caused by: javafx.fxml.LoadException: Element does not define a default property.
at javafx.fxml.FXMLLoader.constructLoadException(FXMLLoader.java:2597)
at javafx.fxml.FXMLLoader.access$100(FXMLLoader.java:103)
at javafx.fxml.FXMLLoader$Element.set(FXMLLoader.java:180)
at javafx.fxml.FXMLLoader$ValueElement.processEndElement(FXMLLoader.java:790)
at javafx.fxml.FXMLLoader.processEndElement(FXMLLoader.java:2823)

所以去 FXMLLoader跟踪异常的来源:

  • 第 790 行:parent.set(value); , 其中parentFXMLLoader$InstanceDeclarationElement 的实例, 类型 <your.package.name>. NestablePropertyValueFactory , 和 valuePropertyValueFactory对象。

  • 第 177-183 行:

    public void set(Object value) throws LoadException {
    ...
    Class<?> type = this.value.getClass();
    DefaultProperty defaultProperty = type.getAnnotation(DefaultProperty.class);
    if (defaultProperty == null) {
    throw constructLoadException("Element does not define a default property.");
    }

    getProperties().put(defaultProperty.value(), value);
    }

可以预料 defaultProperty.value()应该是 "nestedCellValueFactory" , 并且会赋值,但是抛出的异常清楚地表明不是这样的,所以 defaultProperty应该为空。

可以通过检查 Class<?> type 来解释发生了什么:

 type: class com.sun.javafx.fxml.builder.ProxyBuilder

所以 type不是你的NestablePropertyValueFactory类,而是一个 ProxyBuilder .

现在,如果您检查该类,则没有 @DefaultProperty注释,因此 defaultProperty为 null 并抛出异常。

此代理创建于 javafx.fxml.JavaFXBuilderFactory::getBuilder , 基于真实类型:

    if (scanForConstructorAnnotations(type)) {
builder = new ProxyBuilder(type);
}

但它返回 ProxyBuilder相反,在这个过程中 DefaultProperty注释丢失。

代理生成器似乎是为带有 @NamedArg 注释的构造函数的类设计的,但 不是 @DefaultProperty注释。

虽然这可能是您类(class)的情况,但应该有比简短的异常消息更好的解释。

无论如何,由于构建器在您添加标签并删除默认注释时工作正常,我只考虑删除 @DefaultProperty .

关于java - 使用@DefaultProperty 时为 "Element does not define a default property",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43457717/

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