일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javascript
- Machine Learning
- Java
- log4j2
- annotation
- ES6
- spring boot
- JPA
- 리액트
- 테스트 커버리지
- spring
- react
- bean
- 자료구조
- 스프링 부트
- jQuery
- AWS
- 자바스크립트
- cache
- 제이쿼리
- data structure
- Test Coverage
- 어노테이션
- 구버전
- kotlin
- 스프링
- 하이브리드앱
- Deep Learning
- transformer
- C++
- Today
- Total
목록스프링 부트 (2)
박서희연구소
[문제] 서버 개발 시, 로그 기록은 거의 필수적이라고 볼 수 있다. [목표] Spring Boot 에 Log4j2 를 연동하여 로그를 기록하는 방법을 알아본다. [해결] 환경 : Spring Boot 2.4.5, Maven, Kotlin 1.5.0 1. Dependency 추가 org.springframework.boot spring-boot-starter-log4j2 2. log4j2 설정 파일 추가 Spring Boot 는 클래스 경로에서 log4j2.xml 또는 log4j2.json 또는 log4j2.yaml 이라는 파일을 찾으면 자동으로 Log4j 를 구성한다. %d{yyyy-MM-dd HH:mm:ss.SSS} %5p ${hostName} --- [%15.15t] %-40.40c{1.} : %m..
[문제] Spring Boot 를 사용하던 중, MyBatis 가 필요한 상황이 생겼다. [목표] Spring Boot 에 MyBatis 를 연동하는 방법을 알아본다. [해결] 환경 : Spring Boot 2.4.5, Maven, Kotlin 1.5.0, MariaDB 2.7.1, MyBatis 2.1.4 DB 는 연동되어 있다고 가정하며, 사용할 테이블도 생성되어 있어야 한다. 1. Dependency 추가 org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.4 2. Mapper 추가 경로 : src/main/resources/mybatis/mapper/sample(resources 이하 부터는 재량대로 설정) 생성할 mapper interface 에 ..