這篇文章將為大家詳細(xì)講解有關(guān)Springboot中如何自定義校驗(yàn),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站建設(shè)、做網(wǎng)站、三臺(tái)網(wǎng)絡(luò)推廣、小程序設(shè)計(jì)、三臺(tái)網(wǎng)絡(luò)營(yíng)銷、三臺(tái)企業(yè)策劃、三臺(tái)品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供三臺(tái)建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
StartWithValidation.class
@Documented@Constraint(validatedBy = StartWithValidator.class )@Target({METHOD, FIELD})@Retention(RUNTIME)public @interface StartWithValidation { String message() default "不是正確的性別取值范圍"; String start() default "_"; Class>[] groups() default {}; Class extends Payload>[] payload() default {}; @Target({METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER}) @Retention(RUNTIME) @Documented @interface List { StartWithValidation[] value(); }}
StartWithValidator.class
public class StartWithValidator implements ConstraintValidator
運(yùn)用
@StartWithValidation(message = "Param 'address' must be start with 'Beijing'.", start = "Beijing")public String address;
解釋:
地址必須以Beijing開(kāi)頭,否則校驗(yàn)失敗
關(guān)于Springboot中如何自定義校驗(yàn)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。