Skip to content

Commit

Permalink
hotfix: dbcp 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
masiljangajji committed Aug 22, 2024
1 parent d5a2416 commit 57c4f0c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,15 @@ cloud.aws.stack.auto-=false
image.service.impl=s3Service


spring.datasource.url=${jdbc.url}
spring.datasource.username=${jdbc.username}
spring.datasource.password=${jdbc.password}
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
### mysql
database.mysql.url=${jdbc.url}
database.mysql.userName=${jdbc.username}
database.mysql.password=${jdbc.password}
database.mysql.initialSize=10
database.mysql.maxTotal=10
database.mysql.minIdle=10
database.mysql.maxIdle=10
database.mysql.maxWait=1000

spring.servlet.multipart.max-file-size=10MB
spring.servlet.multipart.max-request-size=100MB

0 comments on commit 57c4f0c

Please sign in to comment.