일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 도커
- GIT
- Java
- jQuery
- map
- Spring Cloud
- 자바스크립트
- 스프링
- 유레카
- EUREKA
- spring security
- STS
- map()
- OAuth
- gitlab
- IntelliJ
- JavaScript
- spring boot
- 스프링부트
- 코딩테스트
- 비동기
- SpringBoot
- leetcode
- 스프링 클라우드
- date
- docker
- 자바
- JS
- 프로그래머스
- Spring
- Today
- Total
목록전체 글 (110)
RATSENO
이전 포스팅 : https://ratseno.tistory.com/59 [Spring]Spring Cloud Netflix - Eureka[1] Spring Cloud Netfilx 프로젝트는 Spring Boot를 통하여 Neflix OSS를 사용할 수 있는 프로젝트입니다. 이 프로젝트를 통하여 MSA 환경에 적합한 환경을 구축할 수 있습니다. https://cloud.spring.io/spring-clou.. ratseno.tistory.com 이전 포스팅 : https://ratseno.tistory.com/60 [Spring]Spring Cloud Netflix - Eureka[2] 이전 포스팅 : https://ratseno.tistory.com/59 [Spring]Spring Cloud Net..
이전 포스팅 : https://ratseno.tistory.com/59 [Spring]Spring Cloud Netflix - Eureka[1] Spring Cloud Netfilx 프로젝트는 Spring Boot를 통하여 Neflix OSS를 사용할 수 있는 프로젝트입니다. 이 프로젝트를 통하여 MSA 환경에 적합한 환경을 구축할 수 있습니다. https://cloud.spring.io/spring-clou.. ratseno.tistory.com 이전 포스팅에 이어서 Eureka를 적용해 보겠습니다. 이번 포스팅에서는 employee-consumer 모듈을 이용하여 service discovery(서비스 탐색)을 할 것입니다. 서비스가 등록되어 관리될 eureka server 모듈을 생성하겠습니다. 이..
Spring Cloud Netfilx 프로젝트는 Spring Boot를 통하여 Neflix OSS를 사용할 수 있는 프로젝트입니다. 이 프로젝트를 통하여 MSA 환경에 적합한 환경을 구축할 수 있습니다. https://cloud.spring.io/spring-cloud-netflix/reference/html/#eurekas-health-checks 해당 프로젝트를 구성하는 4가지의 큰 Component들이 있습니다. Netflix Component NameFunctionality Eureka Service Registration and Discovery Ribbon Dynamic Routing and Load Balancer Hystrix Circuit Breaker Zuul Edge Server 이 ..
보호되어 있는 글입니다.
문제설명 임의의 양의 정수 n에 대해, n이 어떤 양의 정수 x의 제곱인지 아닌지 판단하려 합니다. n이 양의 정수 x의 제곱이라면 x+1의 제곱을 리턴하고, n이 양의 정수 x의 제곱이 아니라면 -1을 리턴하는 함수를 완성하세요 제한사항 n은 1이상, 50000000000000 이하인 양의 정수입니다. 문제풀이 class Solution { public long solution(long n) { long answer = -1; double doubleSqrt = Math.sqrt(n); int intSqrt = (int)doubleSqrt; return intSqrt == doubleSqrt ? (long)Math.pow(intSqrt+1,2) : -1; } } 다른 사람 문제풀이 class Solut..