Skip to content

Commit

Permalink
➕️ API 모듈 JPA 추가
Browse files Browse the repository at this point in the history
- 이후에 core import 받도록 수정해보기
  • Loading branch information
jun108059 committed Jun 22, 2022
1 parent 3a3b1f1 commit 8ee2792
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
server:
port: 8080
port: 8080

spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/chatting?useSSL=false&characterEncoding=UTF-8&serverTimezone=UTC
username: yj_park
password: 1234

jpa:
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
open-in-view: false
properties:
hibernate:
format_sql: true
show_sql: true
use_sql_comments: true

logging:
level:
org:
hibernate: info

0 comments on commit 8ee2792

Please sign in to comment.