RestTemplate 프로젝트 설정
2019. 10. 11. 23:26ㆍSpring Micro Services/RestTemplate
반응형
RestTemplate 프로젝트설정
메이븐 메인 프로젝트 설정
이클립스 프로젝트 생성에서 Maven Project 를 선택한다.
그림1.New Maven project
그림2. 프로젝트 설정정보 입력하기
프로젝트 설정 후 pom.xml 을 작성한다
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.roopy</groupId>
<artifactId>spring-microservices-with-resttemplate</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>spring microservices with resttemplate parenet project</name>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.2.RELEASE</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
</dependencies>
<modules>
<module>order-service</module>
<module>payment-service</module>
<module>product-service</module>
</modules>
</project>
위의 설정에서 중요한 부분은 modules로 생성할 모듈 프로젝트를 설정해 주어야 한다.
메이븐 모듈 프로젝트 설정
모듈 프로젝는 Spring Boot + JPA 로 설정한다.
이클립스 프로젝트 생성에서 Maven Module 을 선택한다.
order-service 모듈 설정
order-service 정보 설정
프로젝트 설정 후 pom.xml 을 설정한다.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.roopy</groupId>
<artifactId>spring-microservices-with-resttemplate</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>order-service</artifactId>
<name>주문서비스</name>
<description>사용자의 주문 처리를 위한 서비스</description>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
결제서비스(payment-service), 상품서비스(product-service)도 order-service와 동일하게 생성한다.
전체 프로젝트 구조
프로젝트는 Spring Boot + Spring Framework + JPA를 사용하였으며 Connection Pool은 Hikari 라이브러리를 사용하였습니다.
위의 프로젝트 구조는 앞으로 예제에서 동일하게 사용할 구조 이다. 다음에는 RestTemplate을 이용한 첫번째 마이크로 서비스를 만들어 보도록 하겠다.
반응형
'Spring Micro Services > RestTemplate' 카테고리의 다른 글
RestTemplate 주문서비스 구현 (0) | 2019.10.20 |
---|