Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ity-backend into feat/27-recomment
  • Loading branch information
KellyKimHyeJin committed Jul 24, 2023
2 parents 1291c5e + 4295d3e commit b7e5679
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ dependencies {
implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
implementation group: 'com.sun.xml.bind', name: 'jaxb-core', version: '2.3.0.1'
implementation group: 'com.sun.xml.bind', name: 'jaxb-impl', version: '2.3.1'
runtimeOnly "com.mysql:mysql-connector-j"


}
Expand Down
9 changes: 2 additions & 7 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ spring:
url: ${DB_URL}
username: ${DB_USERNAME}
password: ${DB_PASSWORD}
driver-class-name: org.h2.Driver
driver-class-name: com.mysql.cj.jdbc.Driver

data:
redis:
Expand All @@ -12,17 +12,12 @@ spring:

jpa:
hibernate:
ddl-auto: create
ddl-auto: update
properties:
hibernate:
show_sql: true
format_sql: true

h2:
console:
enabled: true
path: /console


servlet:
multipart:
Expand Down

0 comments on commit b7e5679

Please sign in to comment.