0. 프로젝트 구조 1. build.gradle 1) buildscript //querydsl 추가 buildscript { dependencies { classpath("gradle.plugin.com.ewerk.gradle.plugins:querydsl-plugin:1.0.10") } } 2) apply //querydsl 추가 apply plugin: "com.ewerk.gradle.plugins.querydsl" 3) dependencies //querydsl 추가 implementation 'com.querydsl:querydsl-jpa' implementation 'com.querydsl:querydsl-apt' //querydsl 추가 끝 4) Querydsl build 관련 추가 설정 //..
0. 프로젝트 구조 1. SupplementsRepository.java 인터페이스로 변경 package mandykr.nutrient.repository; import mandykr.nutrient.entity.Supplements; import org.springframework.data.jpa.repository.JpaRepository; public interface SupplementsRepository extends JpaRepository { } 2. 테스트 코드 수정 package mandykr.nutrient; import mandykr.nutrient.entity.Supplements; import mandykr.nutrient.repository.SupplementsRepository..
0. 프로젝트 구조 1. build.gradle > dependencies 참고 : https://github.com/gavlyukovskiy/spring-boot-data-source-decorator // jpa binding parameter log 확인 implementation("com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.7.1") 2. application.yml server: port: 8088 spring: datasource: url: jdbc:h2:tcp://localhost/~/nutrient username: sa password: driver-class-name: org.h2.Driver jpa: hibernate: ddl-aut..
1. Thymeleaf 설정 (view) resources/static : 템플릿 엔진이 포함되지 않은 html 리소스 파일 resources/templates : thymeleaf 파일 1) hello.html 영양분 2) HelloController.java package mandykr.nutrient.controller; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HelloController { @GetMapping("hello") publ..
- Total
- Today
- Yesterday
- spring rest docs
- mockito
- Ubiquitous Language
- Stream
- clean code
- 클린코드
- Git
- H2
- http
- kafka
- TDD
- java8
- ATDD
- named query
- 트랜잭셔널 아웃박스 패턴
- JPA
- 도메인 모델링
- MySQL
- 스프링 카프카 컨슈머
- 스프링 예외 추상화
- Spring Boot
- Spring Data JPA
- 육각형 아키텍처
- 학습 테스트
- 계층형 아키텍처
- Spring
- 이벤트 스토밍
- 마이크로서비스 패턴
- 폴링 발행기 패턴
- HTTP 헤더
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |