React

Spring Boot

.properties

spring.application.name=Team1_Back

spring.datasource.driver-class-name=org.mariadb.jdbc.Driverspring.datasource.url=jdbc:mariadb://localhost:3307/malldbspring.datasource.username=malldbuserspring.datasource.password=malldbuserspring.jpa.hibernate.ddl-auto=updatespring.jpa.properties.hibernate.format_sql=truespring.jpa.show-sql=truelogging.level.org.springframework.security.web=tracespring.servlet.multipart.max-request-size=30MBspring.servlet.multipart.max-file-size=10MBcom.mallapi.upload.path=upload

build.gradle

implementation 'org.springframework.boot:spring-boot-starter-data-jpa'implementation 'org.springframework.boot:spring-boot-starter-web'compileOnly 'org.projectlombok:lombok'developmentOnly 'org.springframework.boot:spring-boot-devtools'runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'annotationProcessor 'org.projectlombok:lombok'implementation 'org.modelmapper:modelmapper:3.1.1'implementation 'net.coobird:thumbnailator:0.4.19'implementation 'org.springframework.boot:spring-boot-starter-security'implementation 'com.google.code.gson:gson:2.10.1'implementation 'io.jsonwebtoken:jjwt-api:0.11.5'runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'testCompileOnly 'org.projectlombok:lombok'testAnnotationProcessor 'org.projectlombok:lombok'testImplementation 'org.springframework.boot:spring-boot-starter-test'testRuntimeOnly 'org.junit.platform:junit-platform-launcher'