0

这是基于 HelloWorldBuilder 的构建器类。

public class LogInfoBuilder extends Builder {
    private final TimerSettings settings = new TimerSettings();

    private final List<String> infoCollection = new ArrayList<String>();

    // Fields in config.jelly must match the parameter names in the "DataBoundConstructor"
    @DataBoundConstructor
    public LogInfoBuilder(String key, boolean isStart) {
        settings.setKey(key);
        settings.setIsStart(isStart);
    }

    /**
     * We'll use this from the <tt>config.jelly</tt>.
     */
    public String getKey() {
        return settings.getKey();
    }

    public boolean isStart()
    {
        return settings.getIsStart();
    }

    ...

这是 config.jelly

<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
  <!--
    This jelly script is used for per-project configuration.

    See global.jelly for a general discussion about jelly script.
  -->

  <!--
    Creates a text field that shows the value of the "name" property.
    When submitted, it will be passed to the corresponding constructor parameter.
  -->
  <f:entry title="Key" field="key">
    <f:textbox />
  </f:entry>

  <!--
  <f:entry title="Start?" field="isstart">
    <select name="isStart">
      <option value="true" selected="${it.isstart}">Yes</option>
      <option value="false" selected="${!it.isstart}">No!</option>
    </select>
  </f:entry>
  -->

  <f:entry title="Starting point?" description="If checked, this will be the starting point.">
    <f:checkbox name="start" checked="${it.start}"/>
  </f:entry>
</j:jelly>

该复选框显示在作业配置页面上,但我无法从中设置值,我的意思是选中或取消选中该页面上的复选框不会影响构建器类中的值。

这是配置页面,ui已正确呈现。 在此处输入图像描述

但是输出不是我所期望的,false即使我选中了复选框,它也总是如此。 在此处输入图像描述

我在构建器和/或果冻文件中做错了什么?

4

2 回答 2

3

你似乎有两个复选框?或者您正在尝试在果冻复选框旁边制作自己的复选框。

你有这整个部分config.jelly

<f:entry title="Start?" field="isstart">
<select name="isStart">
  <option value="true" selected="${it.isstart}">Yes</option>
  <option value="false" selected="${!it.isstart}">No!</option>
</select>
</f:entry>

但这甚至不会出现在 UI 上。


这应该对您有用:更改config.jelly为:

<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<!--
   This jelly script is used for per-project configuration.

   See global.jelly for a general discussion about jelly script.
-->

<!--
   Creates a text field that shows the value of the "name" property.
   When submitted, it will be passed to the corresponding constructor parameter.
-->
<f:entry title="Key" field="key">
  <f:textbox />
</f:entry>

<f:entry title="Starting point?" field="start" description="If checked, this will be the starting point.">
  <f:checkbox/>
</f:entry>
</j:jelly>

如您所见,我删除了中间无用的部分,并更改了您定义复选框的方式。

然后将您的 LogInfoBuilder 更改为:

public class LogInfoBuilder extends Builder {
    private final TimerSettings settings = new TimerSettings();

    private final List<String> infoCollection = new ArrayList<String>();

    // Fields in config.jelly must match the parameter names in the "DataBoundConstructor"
    @DataBoundConstructor
    public LogInfoBuilder(String key, boolean start) {
        settings.setKey(key);
        settings.setIsStart(start);
    }

    /**
     * We'll use this from the <tt>config.jelly</tt>.
     */
    public String getKey() {
        return settings.getKey();
    }

    public boolean isStart()
    {
        return settings.getIsStart();
    }

    ...

这些更改仅包括更改变量的名称以适应 config.jelly 中给出的名称。

于 2014-06-02T12:51:20.903 回答
0

关键是使用“字段”属性。在 <f:entry> 或 <f:checkbox> 中

<f:entry title="Starting point?" description="...">
  <f:checkbox field="start" />
</f:entry>

or
<f:entry title="Starting point?" field="start" description="...">
  <f:checkbox />
</f:entry>
于 2018-05-27T07:32:14.370 回答