Jenkins插件-指项目插件设置中的全局插件设置

发布于 2024-10-20 15:40:59 字数 187 浏览 2 评论 0原文

我想写一个简单的 hudson 插件。我被一件事困住了。我希望能够使用 global.jelly 中的全局设置作为 config.jelly 的默认值。

是否可以?我该怎么做?另一件事 - 我将在 global.jelly 中拥有动态形式(我将使用 标签)。

I would like to wrote simple hudson plugin. I got stuck on one thing. I would like to be able to use global settings from global.jelly as defaults values for config.jelly.

Is it possible? How can I do this? One more thing - I'm going to have dynamic form in global.jelly (I will use <f:repeatable> tag).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往日 2024-10-27 15:40:59

当用户提交全局配置时,将在您的描述符上调用 configure(StaplerRequest req, JSONObject json)。通常,您从请求中提取设置并将其放入描述符中的字段中,它将自动保留在其中。

现在为描述符中的设置定义一个 getter,并在 config.jelly 中使用例如

When the user submits the global configuration, configure(StaplerRequest req, JSONObject json) is called on your descriptor. Usually you extract your setting from the request and put it into a field in your descriptor, where it will be automatically persisted.

Now define a getter for the setting in your descriptor and use e.g. <f:textbox default="${descriptor.getSetting()}/> in the config.jelly to access the global setting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文