250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spring Boot
- myBatis
- ubuntu
- Docker
- JDBC
- JavaScript
- MSSQL
- 오픈소스
- PostgreSQL
- Core Java
- IntelliJ
- AJAX
- jpa
- oracle
- maven
- Eclipse
- 설정
- git
- MySQL
- Exception
- Source
- Thymeleaf
- Tomcat
- error
- spring
- 문서
- STS
- Open Source
- Python
- SpringBoot
Archives
- Today
- Total
목록yml설정 (1)
헤르메스 LIFE
[Spring Boot] Application.yml 설정 - Hibernate – SQL Dialects
일반적인 yml 설정 - show-sql: true 는 System.out 으로 출력하기 때문에 효율이 좋지 않습니다. application.yml # Server port server: port: 9090 servlet: context-path: / spring: datasource: url: jdbc:h2:tcp://localhost/~/test;DB_CLOSE_ON_EXIT=FALSE driver-class-name: org.h2.Driver # H2 Database username: sa password: jpa: show-sql: true # System.out 으로 출력. logging.level.org.hibernate.SQL=debug 로 대체합니다. hibernate: # create :..
Spring Boot Framework
2023. 2. 26. 08:50