[TIL 2024/09/06] MSA 프로젝트 초기설정
·
TIL
유레카 서버 (Eureka-Server) build.gradledependencies { implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-server' testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher'} EurekaServerApplication.java@EnableEurekaServer@SpringBootApplicationpublic class EurekaServerApplication { public static void m..