java stream
작성 목적 stream 데이터 생성 가공 표현 관련 여러 예제를 작성함. 작업 분류 생성하기 : 스트림 인스턴스 생성 가공하기 : filtering, mapping 결과 만들기 : 가공한 결과 어떻게 처리할건지? 0. data given import org.junit.Before; import org.junit.Tes...
작성 목적 stream 데이터 생성 가공 표현 관련 여러 예제를 작성함. 작업 분류 생성하기 : 스트림 인스턴스 생성 가공하기 : filtering, mapping 결과 만들기 : 가공한 결과 어떻게 처리할건지? 0. data given import org.junit.Before; import org.junit.Tes...
작성목적 spring cloud, security 배우면서 나오는 용어의 요약 해석 용어들 gateway API 를 거치는 포탈. (all Inbound, outbound) configuration : URI 요청 predicate 해서 어느 서비스로 요청 보내줄건지? 예) spring.cloud.gateway.routes: 에서 pr...
작성목적 https://spring.io/blog/2019/08/16/securing-services-with-spring-cloud-gateway ..에서 spring cloud + security(jwt) + REST service 의 서버 빌드와 초기 구조 구현을 위함 SSO(security, jwt token privider), gatewa...
작성목적 https://spring.io/blog/2019/07/01/hiding-services-runtime-discovery-with-spring-cloud-gateway 돌려보고 구조 분석 기록을 위함. 실행 https://spring.io/blog/2019/07/01/hiding-services-runtime-discovery-with...
현상과 메세지 module name 변경 (user -> gateway) 후 intellij idea에서 gradle sync 빌드 실패 메세지 Could not set process working directory to could not set current directory (errno 2) 조치와 완료 확인 메인메뉴 -&...
Predicate (구글번역) the part of a sentence or clause containing a verb and stating something about the subject (e.g., went home in John went home ). 동사를 포함하고 주제에 관해 무엇인가를 기술하는 문장이나 절의 일부(예: Jo...
protected와 default 기준 상속구조에서 자식클래스 인가? protected 같은 패키지 내인가? default 자식 패키지 안됨. 오직 같은 패키지 siblings class 여야함. test (아래) 구조 mypackage.Test 객체를 만들어놈. Test객체를 ...
msg Parameter 0 of constructor in ..controller required a bean of type '...Service' that could not be found. (junit) junit 유닛테스트 작성을 위해 MockMvc 호출 후 작업 중 발생함. 로컬 구동 후 postman 요청과 응답은 정상동작...
작성목적 java lambda 예제로 사용법 알 수 있음 java doublecolon 사용 원리 lambda @Test public void lambdaeqTest() { Printer p = new Printer() { @Override public String print(String str, String s...
관련 warning msg Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determin...