LoginSignup
0
1

More than 5 years have passed since last update.

KotlinでDB接続

Last updated at Posted at 2018-06-03

build.gradleに以下を追記

https://qiita.com/kojisaiki/items/be5805bba172aab188c3
compile 'org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.2'
compile 'org.postgresql:postgresql'
spring:
  datasource:
    url: jdbc:postgresql://localhost:5432/<DB名>
    username: <ユーザ名>
    password: <パスワード>
    driver-class-name: org.postgresql.Driver

参考
https://qiita.com/kojisaiki/items/be5805bba172aab188c3

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1