Skip to content

Commit

Permalink
[Refactor] refactor file
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyunio committed May 11, 2024
1 parent 6f39354 commit 9695a69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
annotationProcessor 'org.projectlombok:lombok'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
implementation 'mysql:mysql-connector-java:8.0.32'
implementation 'org.mariadb.jdbc:mariadb-java-client:2.7.11'
}

tasks.named('test') {
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
spring.application.name=todolist

#mySQL
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://na2ru2.me:0/jiyoon
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
spring.datasource.url=jdbc:mysql://localhost:3306/jiyoon
spring.datasource.username=jiyoon
spring.datasource.password=test1234

#JPA
spring.jpa.hibernate.ddl-auto=create
spring.jpa.show-sql=true
spring.jpa.open-in-view=false
spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect

#SERVER
server.port=5151
Expand Down

0 comments on commit 9695a69

Please sign in to comment.