Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 772 Bytes

README.md

File metadata and controls

39 lines (33 loc) · 772 Bytes

Simple Service

Simple spring + Kotlin + JPA application

  • Policy
  • Post
  • User

Database

Using flyway

  • Rule : V{date}{time}__{Description}
  • Just run modify database

application.yml

make file and set

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/notice_board?serverTimezone=UTC&characterEncoding=UTF-8
    username: {YOUR}
    password: {YOUR}
  flyway:
    enabled: true
    baseline-on-migrate: true
    url: jdbc:mysql://localhost:3306/notice_board?serverTimezone=UTC&characterEncoding=UTF-8
    user: {YOUR}
    password: {YOUR}

Swagger

http://localhost:8080/swagger-ui/index.html#/

Test

some code

Author

License

  • MIT license.