Jo-wonbin / SpringBootPracticeProject

0 stars 0 forks source link

SpringBootPracticeProject

개발 환경

application.yml


server:
  port: 8080
  tomcat:
    max-http-form-post-size: 1GB

# DB
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/board?serverTimezone=Asia/Seoul&characterEncoding=UTF-8
    username: DB 아이디
    password: DB 비밀번호
  thymeleaf:
    cache: false
#Swagger
  mvc:
    path-match:
      matching-strategy: ant_path_matcher

##  JPA
  jpa:
    database-platform: org.hibernate.dialect.MySQL8Dialect
#    database-platform: org.hibernate.dialect.H2Dialect
    open-in-view: false
    show-sql: true
    hibernate:
      ddl-auto: update
    properties:
      hibernate:
        format_sql: true

  servlet:
    multipart:
      max-file-size: 1GB
      max-request-size: 1GB