스프링부트 멀티모듈 구성하기(3) - API 모듈 작성하기 Spring Boot Multi-Module Setup (3) - Creating API Module
Let’s create a simple API to verify that module-api properly calls module-core Since we declared Customer and Order tities in module-core, let’s create rea...
Let’s create a simple API to verify that module-api properly calls module-core Since we declared Customer and Order tities in module-core, let’s create rea...
코어모듈은 우리가 만든 module-api, module-stream 에서 공동으로 사용하기 위해 만든 모듈이다. 가장 큰 이유는, 도메인 엔티티를 공유하려고 한다. 각각의 서버나 어플리케이션에서 따로 관리한다면, 엔티티 수정이 일어났을 경우 각각 서버나 어플리케이션에서 수정해야...
The core module is a module created for shared use by module-api and module-stream that we created.
프로젝트 시작전 스프링부트를 사용해 프로젝트 sprint 1,2를 진행하면서 정말 기초적이지만 기본기능들을 만들게 되었다 진행하고 있는 이 프로젝트는, 한 개의 API서버, 한 개 이상의 Consumer Application, 차후에 생길 가능성이있는 배치서버 등으로 구성 될 ...
Before Starting the Project
TestCode 작성하는 이유 코드에대한 문서화 코드에 대한 결함을 발견하기 위함 리팩토링 시 안정성 확보 TDD란? Test Driven Development 프로덕션 코드보다 테스트코드를 먼저 작성하는 개발 방법 TFD(Test First Dev...
Why Write Test Code
하나의 Server에서 하나의 DB만 사용하면 너무 편하겠지만 예외적인 상황들이 있을 수 있다 중앙에서 관리하는 Server(Route역할)가 앞에서 filter를 거쳐, 뒤에 이어진 다양한 Server들을 이어주는 경우가 아니라면 여러개의 DataSource를 설정하는 고민을...
It would be very convit if a single server only needed one database, but there can be exceptional situations Unless you have a ctrally managed server (acti...
로그란? 로그는 간단하게 말해서 연속된 데이터의 기록이라고 할 수 있다 일반적으로 처음 프로그래밍을 배울 때는 보통 System.out.print 사용을 많이한다 이 때, 프로그램이 실행되면서 콘솔에 무엇인가가 출력되는데, 이런 것들이 로그가 될 수 있다 Logg...
What is a Log?
SpringBoot2 Spring Data JPA H2 Gradle JUnit
SpringBoot2 Spring Data JPA H2 Gradle JUnit
Springboot 를 tlin을 사용하여 작성해보기 h2 데이터베이스와 JPA를 사용해서 주문모델을 구현 해 보도록 하자
Writing Springboot using Kotlin Let’s implemt an order model using h2 database and JPA