최신 글
JavaScript

Promise.all vs. Promise.allSettled

PromiseJavaScript의 비동기 처리를 위한 표준 객체서버로부터 데이터를 가져오는 요청을 할 경우 -> 작업이 완료될 때 까지 코드 실행 멈추지 않도록 함 -> 비동기 처리-> 미래에 완료될 작업에 대한 결과를 처리할 수 있는 객체다.작업이 성공했는지 실패했는지에 따라 다른 결과를 반환한다.3가지 상태 Pending (대기 중): 초기 상태로, 아직 작업이 완료되지 않은 상태.Fulfilled (이행됨): 작업이 성공적으로 완료되어 결과를 반환한 상태.Rejected (거부됨): 작업이 실패하여 에러를 반환한 상태.Promise 사용법const myPromise = new Promise((resolve, reject) => { const success = true; // 예시로 성공과 실패를 ..

Spring

Feign Client & WebClient 초초간단 비교

그냥 내가 볼려고 메모한 것..Feign Client Spring Cloud Feign을 의존성에 추가합니다.인터페이스에 @FeignClient 어노테이션을 사용해 API를 선언합니다.@FeignClient(name = "exampleClient", url = "https://example.com")public interface ExampleClient { @GetMapping("/resource/{id}") ExampleResource getResourceById(@PathVariable("id") Long id); @PostMapping("/resource") ExampleResource createResource(@RequestBody ExampleResource resourc..

코딩테스트

[Java/Kotlin/TypeScript] 배열의 값 한번에 더하기 (A Very Big Sum)

https://www.hackerrank.com/challenges/a-very-big-sum/problem?isFullScreen=true A Very Big Sum | HackerRankCalculate the sum of the values in an array that might exceed the range of int values.www.hackerrank.comHackerrank > A Very Big Sum 문제배열을 효율적으로 잘 더하는 방법.Java 8 이상public static long aVeryBigSum(List ar) { return ar.stream().mapToLong(Long::longValue).sum();}Kotlinfun aVeryBigSum(ar: Array)..

코딩테스트

[Java/Kotlin/TypeScript] 배열 <-> 리스트

https://www.hackerrank.com/challenges/compare-the-triplets/problem?isFullScreen=true Compare the Triplets | HackerRankCompare the elements in two triplets.www.hackerrank.com이 문제 풀다가 정리한 것 (HackerRank > Compare the Triplets)문제 상황아래와 같은 int형 배열이 있을 때,int shortArray[] = new int[2];int longArray[[] = new int[12345];각 언어에서 어떻게 list로 변환하느냐?근데 언어에 따라 List -> 배열로 바꾸는 것도 있음.Java 7길이가 짧은 배열 -> Arrays.asLi..

코딩테스트

[Java/Kotlin/TypeScript] 반복문 돌면서 합 구하기

https://www.hackerrank.com/challenges/simple-array-sum/problem?isFullScreen=true Simple Array Sum | HackerRankCalculate the sum of integers in an array.www.hackerrank.com아주아주 간단한 문제. for문 잘 쓰고 있는지 물어보는 것.개발자라면 다 풀 수 있으나, 언어별 차이를 정리해서 남기고자 쓰는 글. Java 8 미만public static int simpleArraySum(List ar) { int sum = 0; for(int i: ar) { sum += i; } return sum;}아주아주 간단한 for문.Java 8 이상publ..

떼루르르
떼루르르의 개발 블로그