Created
July 13, 2021 14:24
-
-
Save rafaelpontezup/66f1a1166a3b7126cffd9ac88029d6bb to your computer and use it in GitHub Desktop.
Bean Validation: entendendo como funciona
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bean Validations = spec = PDF -> Hibernate-Validator -> JAR | |
@Intropected | |
data class ProdutoRequest( | |
@field:NotNull val codigo: Int, // obrigatorio | |
@field:NotBlank @field:Size(max=42) val nome: String // obrigatorio e tamanho maximo de 42 | |
) | |
@Entity | |
class Produto( | |
@Id @GeneratedValue val id: Long, | |
@field:NotNull val codigo: Int, // obrigatorio | |
@field:NotBlank @field:Size(max=42) val nome: String // obrigatorio e tamanho maximo de 42 | |
) | |
@Validated | |
class ProdutoController( | |
@Inject val validator: Validator, | |
@Inject repository: ProdutoRepository | |
) { | |
fun adiciona(@Valid request: ProdutoRequest) { // 3. Micronaut: dispara da validaçao | |
val violations = validator.validate(request) // 2. Dev cansado: dispara a validação manualmente | |
if (violations.isNotEmpty) { | |
throw ConstraintViolationException(violations) | |
} | |
val produto = request.toModel() // converte pra entidade da JPA | |
repository.save(request) // 4. Hibernate: antes de fazer o INSERT, ele dispara a validação | |
// 1. Dev cansado: faz a validação na unha | |
// if (request.codigo == null) { | |
// throw ErroDeValidacaoException("codigo do produto obrigatorio") | |
// } | |
// if (request.nome.isBlank()) { | |
// throw ErroDeValidacaoException("nome do produto obrigatorio") | |
// } | |
// if (request.nome.length > 42) { | |
// throw ErroDeValidacaoException("nome do produto deve ter maximo de 42 caracteres") | |
// } | |
// ... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment