org.springframework.validation.BindException.getLocalizedMessage()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(94)

本文整理了Java中org.springframework.validation.BindException.getLocalizedMessage()方法的一些代码示例,展示了BindException.getLocalizedMessage()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BindException.getLocalizedMessage()方法的具体详情如下:
包路径:org.springframework.validation.BindException
类名称:BindException
方法名:getLocalizedMessage

BindException.getLocalizedMessage介绍

暂无

代码示例

代码示例来源:origin: junneyang/xxproject

@Override
protected ResponseEntity<Object> handleBindException(final BindException ex, final HttpHeaders headers, final HttpStatus status, final WebRequest request) {
  logger.info(ex.getClass().getName());
  //
  final List<String> errors = new ArrayList<String>();
  for (final FieldError error : ex.getBindingResult().getFieldErrors()) {
    errors.add(error.getField() + ": " + error.getDefaultMessage());
  }
  for (final ObjectError error : ex.getBindingResult().getGlobalErrors()) {
    errors.add(error.getObjectName() + ": " + error.getDefaultMessage());
  }
  final ApiError apiError = new ApiError(HttpStatus.BAD_REQUEST, ex.getLocalizedMessage(), errors);
  return handleExceptionInternal(ex, apiError, headers, apiError.getStatus(), request);
}

代码示例来源:origin: v5developer/maven-framework-project

@Test
public void product_with_existing_productId_invalid() {
  //Arrange
  Product product = new Product("P1234","iPhone 5s", new BigDecimal(500));
  product.setCategory("Tablet");
  
  BindException bindException = new BindException(product, " product");
  //Act
  ValidationUtils.invokeValidator(productValidator, product, bindException);
  
  //Assert
  Assert.assertEquals(1, bindException.getErrorCount()); 
  Assert.assertTrue(bindException.getLocalizedMessage().contains("A product already exists with this product id."));
}

代码示例来源:origin: v5developer/maven-framework-project

@Test
public void product_without_UnitPrice_should_be_invalid() {
  //Arrange
  Product product = new Product();
  BindException bindException = new BindException(product, " product");
  //Act
  ValidationUtils.invokeValidator(productValidator, product, bindException);
  
  //Assert
  Assert.assertEquals(1, bindException.getErrorCount()); 
  Assert.assertTrue(bindException.getLocalizedMessage().contains("Unit price is Invalid. It cannot be empty."));
}

相关文章