Jenkins插件-指项目插件设置中的全局插件设置
我想写一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当用户提交全局配置时,将在您的描述符上调用
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.