Springboot之Jsr303校驗及多環境配置

2022-09-09 16:27:25 字數 665 閱讀 4271

1.jsr303校驗

@validated 開啟303校驗

@email 驗證字段是否是郵箱

若email不可用在pom.xml中新增

org.springframework.boot

spring-boot-starter-validation

常用校驗註解

示例

結果

2.多環境配置

預設配置順序

file/config

file/..

classpath:config

classpath:/..

在yaml中使用---分割不同環境

使用spring.profiles.active啟用環境

示例:

springboot之JSR303資料校驗

springboot中可以用 validated來校驗資料,如果資料異常則會統一丟擲異常,方便異常中心統一處理。我們這裡來寫個註解讓我們的name只能支援email格式 component 註冊bean configurationproperties prefix person validated ...

SpringBoot 三 JSR303資料校驗

springboot中可以用 validated來校驗資料,如果資料異常則會統一丟擲異常,方便異常中心統一處理。我們這裡來寫個註解讓我們的name只能支援email格式 先導入依賴 org.springframework.bootgroupid spring boot starter validat...

JSR 303 spring3 注釋驗證備忘

spring官方說明 表 1.bean validation 中內建的 constraint constraint詳細資訊 null被注釋的元素必須為null notnull被注釋的元素必須不為null asserttrue被注釋的元素必須為true assertfalse被注釋的元素必須為fals...