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 | 29 | 30 | 31 |
Tags
- Core Java
- Spring Boot
- Python
- Eclipse
- spring
- MSSQL
- oracle
- MySQL
- maven
- IntelliJ
- JavaScript
- AJAX
- jpa
- Source
- SpringBoot
- error
- Docker
- PostgreSQL
- 설정
- 문서
- Thymeleaf
- JDBC
- Tomcat
- Exception
- ubuntu
- git
- Open Source
- myBatis
- STS
- 오픈소스
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