EnableEurekaServer
-
[Eureka] Eureka client 만들기서버 2019. 3. 24. 17:14
[Eureka] Eureka client 만들기 https://start.spring.io/ 여기서 dependency eureka-discovery, web 추가해서 생성할 경우 1번 건너뛰세요 1. pom.xml 파일에 dependency 추가 12345678910 org.springframework.cloud spring-cloud-starter-netflix-eureka-client org.springframework.boot spring-boot-starter-web Colored by Color Scriptercs 2. application.properties 파일 설정 123spring.application.name=user-serviceeureka.client.service-url.defa..
-
[Eureka] Eureka 서버 생성하기서버 2019. 3. 23. 15:49
[Eureka] Eureka 서버 생성하기 https://start.spring.io/ 여기에 들어가서 dependency에 eureka server 추가해서 생성하는 법이 있다.이 방식을 사용하면 1번 뛰어넘어도 된다. 1. pom.xml 파일에 아래를 추가. 1234 org.springframework.cloud spring-cloud-starter-netflix-eureka-server Colored by Color Scriptercs 2. application.properties 파일에 설정 1234567server.port=8761spring.application.name=discovery-serviceeureka.instance.hostname=localhosteureka.client.regi..