當前位置: 首頁>>代碼示例>>Java>>正文


Java DataIntegrityViolationException.getCause方法代碼示例

本文整理匯總了Java中org.springframework.dao.DataIntegrityViolationException.getCause方法的典型用法代碼示例。如果您正苦於以下問題:Java DataIntegrityViolationException.getCause方法的具體用法?Java DataIntegrityViolationException.getCause怎麽用?Java DataIntegrityViolationException.getCause使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.dao.DataIntegrityViolationException的用法示例。


在下文中一共展示了DataIntegrityViolationException.getCause方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: handleDataIntegrityViolationException

import org.springframework.dao.DataIntegrityViolationException; //導入方法依賴的package包/類
@Loggable
@ResponseStatus(code = HttpStatus.CONFLICT)
@ExceptionHandler(DataIntegrityViolationException.class)
public ErrorDto handleDataIntegrityViolationException(DataIntegrityViolationException ex) {
    if (uniqueConstraintList != null && ex.getCause() != null && ex.getCause() instanceof ConstraintViolationException) {
        Optional<DataUniqueConstraint> matchCons = uniqueConstraintList.stream().filter((cons) ->
                ((ConstraintViolationException) ex.getCause()).getConstraintName().contains(cons.getConstraintName())).findFirst();
        if (matchCons.isPresent()) {
            return ErrorDto.builder()
                    .errorCode(ErrorCodes.DATA_VALIDATION)
                    .error(ValidationErrorDto.builder()
                            .errorCode("UNIQUE")
                            .fieldName(Arrays.stream(matchCons.get().getFieldNames())
                                    .map(Object::toString)
                                    .collect(Collectors.joining(", ")))
                            .build())
                    .message(ex.getLocalizedMessage())
                    .build();
        }
    }

    return ErrorDto.builder()
            .errorCode(ErrorCodes.UNKNOWN)
            .message(ex.getLocalizedMessage())
            .build();
}
 
開發者ID:rozidan,項目名稱:project-template,代碼行數:27,代碼來源:DataExceptionHandlers.java

示例2: handleDataIntegrityViolation

import org.springframework.dao.DataIntegrityViolationException; //導入方法依賴的package包/類
/**
 * Handle DataIntegrityViolationException, inspects the cause for different DB causes.
 *
 * @param ex the DataIntegrityViolationException
 * @return the ApiError object
 */
@ExceptionHandler(DataIntegrityViolationException.class)
protected ResponseEntity<Object> handleDataIntegrityViolation(DataIntegrityViolationException ex,
                                                              WebRequest request) {
    if (ex.getCause() instanceof ConstraintViolationException) {
        return buildResponseEntity(new RestApiError(HttpStatus.CONFLICT, "Database error", ex.getCause()));
    }
    return buildResponseEntity(new RestApiError(HttpStatus.INTERNAL_SERVER_ERROR, ex));
}
 
開發者ID:h819,項目名稱:spring-boot,代碼行數:15,代碼來源:RestExceptionHandler.java


注:本文中的org.springframework.dao.DataIntegrityViolationException.getCause方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。