본문 바로가기

분류 전체보기133

[Spring Cloud] API Gateway 본 내용은 인프런에 Dowon Lee 님의 강의내용 간략하게 정리한 내용입니다. https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%ED%81%B4%EB%9D%BC%EC%9A%B0%EB%93%9C-%EB%A7%88%EC%9D%B4%ED%81%AC%EB%A1%9C%EC%84%9C%EB%B9%84%EC%8A%A4/dashboard Spring Cloud로 개발하는 마이크로서비스 애플리케이션(MSA) - 인프런 | 강의 Spring framework의 Spring Cloud 제품군을 이용하여 마이크로서비스 애플리케이션을 개발해 보는 과정입니다. Cloud Native Application으로써의 Spring Cloud를 어떻게 사용하는지, 구성을 어떻게.. 2022. 8. 26.
[Spring Cloud] Eureka 서버 기동하기 먼저 Eureka 란.. Netflix 에서 오픈소스로 공개한 MSA 에서 사용되는 Naming Server 이다. https://cloud.spring.io/spring-cloud-netflix/reference/html/ Spring Cloud Netflix This project provides Netflix OSS integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms. With a few simple annotations you can quickly enable and configure the commo.. 2022. 8. 18.
[Java] KST 시간변환 KST 시간예시 Sat Jan 01 00:00:00 KST 2022 변환방법 SimpleDateFormat 을 이용. 여기서 중요한점 KST 포멧을 받을 SimpleDateFormat 과 원하는 포멧으로 바꿀 SimpleDateFormat 두가지가 필요하다. @Test public void dateFormatTest() throws JSONException, ParseException { String date = "Sat Jan 01 00:00:00 KST 2022"; SimpleDateFormat recFormat = new SimpleDateFormat("E MMM dd HH:mm:ss z yyyy",Locale.ENGLISH); SimpleDateFormat sdf = new SimpleDateFo.. 2022. 8. 16.
[Go] Golang 기본정리 https://blue-country-190.notion.site/Golang-515a6a51d9fd450a811dc23ac8d04100 Golang 아래 정리내용은 고투어(go-tour) 예제를 정리한 내용입니다. blue-country-190.notion.site 해당 내용은 아래 "고투어" 사이트의 예제를 정리한 노션 페이지 입니다. https://go-tour-ko.appspot.com/ Go를 향한 여행 go-tour-ko.appspot.com 2022. 8. 11.
[JUnit5] 테스트 코드 시작해보기 - 2 태깅/ 필터링 @Tag 어노테이션을 이용하여 메서드 태깅이 가능하다. `@Tag("태그명")` 테스트 사용하기 Intellij 기준 Test Configuration 에서 테스트 사용할 태그명 입력 가능하다. class TestServiceTest { @Test @Tag("do") void test(){ System.out.println("do"); } @Test @Tag("not") void test2(){ System.out.println("not"); } } maven or gradle 설정을 통해 build 할때 진행되는 테스트 커버리지 설정도 가능하다. maven maven-surefire-plugin do gradle // 해당 테스트 미포함 tasks.named('test') { useJUn.. 2022. 7. 15.
반응형