Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- scrapy
- Spring Batch 강의
- spring Annotation
- Vue 배우기
- Spring
- 미국주식
- IntelliJ
- JDK1.3
- 애드센스 수익
- AES256
- python 기초
- 구글 애드센스 수익
- docker 명령어
- python
- 젠킨스
- apache log4j
- gradle
- 미국 배당주
- Vue 강의
- docker mysql
- Python 기본편
- docker
- Vue 알아보기
- Spring Batch
- MYSQL
- 티스토리 광고 수익
- Vue
- spring boot 시작
- 도커
- intelliJ plugin
Archives
나만의공간
Spring DB Param Mapping Log 출력 본문
로컬환경에서 개발을 하다 DB쿼리에 Mapping 된 Parameter값을 보고 싶을 때가 있습니다.
여러 라이브러리가 존재 하는데 아래에 있는 라이브러리를 사용해 보기로 했습니다.
Spring DB Param Mapping 방법
사이트 : https://github.com/gavlyukovskiy/spring-boot-data-source-decorator
위 사이트에 접속하시면 총 3가지 라이브러리를 제공합니다.
이중 P6Spy라는 라이브러리를 이용하고자 합니다.
Spring build.gradle 설정
build.gradle 파일에 아래 항목 하나만 더 추가 하면 끝납니다.
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.8.0'
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-devtools'
implementation 'com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.8.0'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
p6spy 설정결과
쿼리 Param결과가 잘 매핑 됩니다.
개발서버 / 로컬환경에서만 사용하시고, 운영환경 배포는 성능상에 이슈가 없는지 검토 하신 후 적용하시기 바랍니다.
'IT > Spring' 카테고리의 다른 글
@Accessors 어노테이션 설명 (0) | 2024.03.04 |
---|---|
[Spring Batch] Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true 오류 해결 (0) | 2023.09.05 |
Spring Boot Template Engine 연결 (Pebble Template) (0) | 2022.01.20 |
Spring Boot Project Initializr (GitHub 위치) (0) | 2022.01.14 |
번외 : Spring Boot War파일 생성, 로컬 Tomcat 뛰우기 (0) | 2022.01.08 |
Comments