fix: source cleansing

dev
gitea-관리자 12 months ago
parent 921e0bd1bf
commit 99653d60ef

@ -1,53 +0,0 @@
package kr.xit.core.spring.config.support;
import kr.xit.core.exception.BizRuntimeException;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.http.client.ClientHttpResponse;
import org.springframework.web.client.DefaultResponseErrorHandler;
import java.io.IOException;
/**
* <pre>
* description : RestTemplate Error Handler
* packageName : kr.xit.core.spring.config.support
* fileName : RestResponseErrorHandler
* author : julim
* date : 2023-04-28
* ======================================================================
*
* ----------------------------------------------------------------------
* 2023-04-28 julim
*
* </pre>
* @see kr.xit.core.spring.config.RestTemplateConfig#restTemplate
*/
@Slf4j
public class RestResponseErrorHandler extends DefaultResponseErrorHandler {
@Override
public void handleError(ClientHttpResponse response) throws IOException {
String seriesName = "UNKNOWN_ERROR";
if (response.getStatusCode() == HttpStatus.PRECONDITION_FAILED) {
seriesName = String.valueOf(HttpStatus.PRECONDITION_FAILED.value());
}else if (response.getStatusCode().series() == HttpStatus.Series.SERVER_ERROR) {
// handle SERVER_ERROR
seriesName = HttpStatus.Series.SERVER_ERROR.name();
} else if (response.getStatusCode().series() == HttpStatus.Series.CLIENT_ERROR) {
// handle CLIENT_ERROR
seriesName = HttpStatus.Series.CLIENT_ERROR.name();
if (response.getStatusCode() == HttpStatus.NOT_FOUND) {
seriesName = String.valueOf(HttpStatus.NOT_FOUND.value());
}
}
log.error("========================== RestResponse Error ==============================");
log.error("SERIES NAME : {}", seriesName);
log.error("STATUS CODE : {}", response.getStatusCode());
log.error("=============================================================================");
//throw BizRuntimeException.create(String.valueOf(response.getStatusCode().value()), null);
}
}

@ -150,6 +150,7 @@ public class EnsBatchStatusService extends AbstractService implements IEnsBatchS
final List<String> docsBinderUuids = mapper.selectKakaoStatusTgts(dto); final List<String> docsBinderUuids = mapper.selectKakaoStatusTgts(dto);
final List<List<String>> partitions = ListUtils.partition(docsBinderUuids, bulkKkoMaxCnt); final List<List<String>> partitions = ListUtils.partition(docsBinderUuids, bulkKkoMaxCnt);
@SuppressWarnings("rawtypes")
final List<ApiResponseDTO> apiResults = partitions.stream() final List<ApiResponseDTO> apiResults = partitions.stream()
.map(uuids -> apiWebClient.exchange( .map(uuids -> apiWebClient.exchange(
url, url,

@ -92,8 +92,8 @@ public class EnsBatchController {
) )
}) })
}) })
@PostMapping(value = "/findStatusBulks", produces = MediaType.APPLICATION_JSON_VALUE) @PostMapping(value = "/statusBulks", produces = MediaType.APPLICATION_JSON_VALUE)
public IApiResponse findStatusBulks(@RequestBody final EnsDTO.BatchEnsRequest reqDTO){ public IApiResponse statusBulks(@RequestBody final EnsDTO.BatchEnsRequest reqDTO){
statusService.statusBulks(reqDTO); statusService.statusBulks(reqDTO);
return ApiResponseDTO.success(); return ApiResponseDTO.success();
} }

@ -1,10 +0,0 @@
/**
* egov framework config package classes
* <p>
*
* </p>
* @since 1.0
* @author limju
* @version 1.0
*/
package egovframework.com.cmm.config;

@ -1,10 +0,0 @@
/**
* egov framework interceptor package classes
* <p>
*
* </p>
* @since 1.0
* @author limju
* @version 1.0
*/
package egovframework.com.cmm.interceptor;

@ -1,10 +0,0 @@
/**
* egov framework java web token package classes
* <p>
*
* </p>
* @since 1.0
* @author limju
* @version 1.0
*/
package egovframework.com.cmm.jwt.config;

@ -1,10 +0,0 @@
/**
* egov framework model package classes
* <p>
*
* </p>
* @since 1.0
* @author limju
* @version 1.0
*/
package egovframework.com.cmm.model;

@ -1,10 +0,0 @@
/**
* egov framework package classes
* <p>
*
* </p>
* @since 1.0
* @author limju
* @version 1.0
*/
package egovframework.com.cmm;

@ -1,10 +0,0 @@
/**
* egov framework util package classes
* <p>
*
* </p>
* @since 1.0
* @author limju
* @version 1.0
*/
package egovframework.com.cmm.util;

@ -1,10 +0,0 @@
/**
* egov framework web package classes
* <p>
*
* </p>
* @since 1.0
* @author limju
* @version 1.0
*/
package egovframework.com.cmm.web;
Loading…
Cancel
Save