여백에 도장 찍기

Spring boot - MySQL 연동 본문

카테고리 없음

Spring boot - MySQL 연동

Linzyseo 2019. 7. 13. 17:37

Environment

 

Spring boot 에서 MySQL 연동해보자. 

 

1. pom.xml 에 관련 dependency를 추가.

 <!-- MyBatis -->
<dependency>
	<groupId>org.mybatis.spring.boot</groupId>
	<artifactId>mybatis-spring-boot-starter</artifactId>
	<version>2.0.0</version>
</dependency>
<!-- MySQL -->
<dependency>
	<groupId>mysql</groupId>
	<artifactId>mysql-connector-java</artifactId>
	<version>8.0.15</version>
</dependency>

 

2. application.properties 파일에 DB connection 관련 정보를 추가해본다. 

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/testdb
spring.datasource.username=testuser
spring.datasource.password=testpwd 
Comments