gpt4 book ai didi

java - 简单的 Apache-commons 配置示例抛出 ConfigurationRuntimeException

转载 作者:行者123 更新时间:2023-11-30 07:17:21 27 4
gpt4 key购买 nike

我正在尝试测试 a very simple example Apache-commons 配置库用户指南中给出了有关声明和创建 bean 的信息。我几乎逐字逐句地复制了示例中的代码,但我得到了一个 ConfigurationRuntimeException(这是在克服不同的异常之后,请参阅 this question)。

这是我正在使用的 xml 文件 - windowcongif.xml:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<config>
<gui>
<windowManager config-class="test.DefaultWindowManager"
closable="false" resizable="true" defaultWidth="400"
defaultHeight="250">
</windowManager>
</gui>
</config>

这是文件 WindowManager.java 中的代码:

package test;
public interface WindowManager {}

这是文件 DefaultWindowManager.java 中的代码:

package test;
public class DefaultWindowManager implements WindowManager {
private boolean resizable;
private boolean closable;
private int defaultWidth;
private int defaultHeight;
}

这是文件 Main.java 中的代码:

package test;
import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.XMLConfiguration;
import org.apache.commons.configuration.beanutils.BeanDeclaration;
import org.apache.commons.configuration.beanutils.BeanHelper;
import org.apache.commons.configuration.beanutils.XMLBeanDeclaration;
import org.apache.commons.beanutils.PropertyUtils;

public class Main {
public static void main(String[] args) throws ConfigurationException {
XMLConfiguration config = new XMLConfiguration("windowconfig.xml");
BeanDeclaration decl = new XMLBeanDeclaration(config, "gui.windowManager");
WindowManager wm = (WindowManager) BeanHelper.createBean(decl);
}
}

这是运行时的输出:

Exception in thread "main" org.apache.commons.configuration.ConfigurationRuntimeException: org.apache.commons.configuration.ConfigurationRuntimeException: Property defaultHeight cannot be set on test.DefaultWindowManager
at org.apache.commons.configuration.beanutils.BeanHelper.createBean(BeanHelper.java:341)
at org.apache.commons.configuration.beanutils.BeanHelper.createBean(BeanHelper.java:358)
at org.apache.commons.configuration.beanutils.BeanHelper.createBean(BeanHelper.java:372)
at test.Main.main(Main.java:24)
Caused by: org.apache.commons.configuration.ConfigurationRuntimeException: Property defaultHeight cannot be set on test.DefaultWindowManager
at org.apache.commons.configuration.beanutils.BeanHelper.initProperty(BeanHelper.java:271)
at org.apache.commons.configuration.beanutils.BeanHelper.initBeanProperties(BeanHelper.java:229)
at org.apache.commons.configuration.beanutils.BeanHelper.initBean(BeanHelper.java:166)
at org.apache.commons.configuration.beanutils.DefaultBeanFactory.initBeanInstance(DefaultBeanFactory.java:108)
at org.apache.commons.configuration.beanutils.DefaultBeanFactory.createBean(DefaultBeanFactory.java:64)
at org.apache.commons.configuration.beanutils.BeanHelper.createBean(BeanHelper.java:336)
... 3 more

如何使这个简单的示例起作用?

我使用的是 commons-configuration 包的 1.9 版和 commons-beanutils 包的 1.8.3 版,它们是在将依赖项放入 pom.xml 文件后由 IntelliJ IDEA 自动导入的, 以及在 Windows 8 64 位上运行的 java 版本 1.7.0_17。

最佳答案

如果您使用的是 JavaBeans,则需要为每个要设置的字段添加一个 setter 。

我建议在 IntelliJ 中为这些字段使用添加 setter 和 getter

示例状态

// getters and setters ommitted, also the WindowManager methods

关于java - 简单的 Apache-commons 配置示例抛出 ConfigurationRuntimeException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16266523/

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