Jenkins: validateButton in config.jelly for a class without Descriptor
问题 I have the Plugin class without Descriptor : @Extension public class Plugin extends hudson.Plugin { // ... public FormValidation doValidateForm(String s) { return FormValidation.ok("Hello world! Your 's': " + s); } } And I have a config.jelly for this class: <?jelly escape-by-default='true'?> <j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form"> <!-- ... --> <f:entry title="Test"> <f:textbox name="test" value="123" field="test"/> </f:entry> <f:validateButton title="Test" progress="Testing..."