시작이 반

[Spring] dependencies (mysql, lombok, data-jpa) 본문

Programming/Spring

[Spring] dependencies (mysql, lombok, data-jpa)

G_Gi 2021. 2. 24. 17:03
SMALL

프로젝트 생성시 자꾸 찾아보는 것들..

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' //타임리프
	implementation 'org.springframework.boot:spring-boot-starter-web' //웹

	//롬복
	compileOnly 'org.projectlombok:lombok'
	annotationProcessor 'org.projectlombok:lombok'

	//mysql
	compile 'mysql:mysql-connector-java'


	//data-jpa
	implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

	testImplementation('org.springframework.boot:spring-boot-starter-test') {
		exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
	}
}
LIST