질문&답변
강의 중 springframework import 에 문제가 생긴것 같아요 ,,
gradle을 다시 refresh하니 다시 정상적으로 동작합니다 ㅜㅜㅜ 감사합니다 !!!
- 좋아요수
- 0
- 댓글수
- 4
- 조회수
- 1182
질문&답변
gradle을 다시 refresh하니 다시 정상적으로 동작합니다 ㅜㅜㅜ 감사합니다 !!!
질문&답변
build.gradle 부분은 아래와 같이 되어있습니다 ! plugins { id 'org.springframework.boot' version '2.3.4.RELEASE' id 'io.spring.dependency-management' version '1.0.10.RELEASE' id 'java' } group = 'hello' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' testImplementation( 'org.springframework.boot:spring-boot-starter-test' ) { exclude group : 'org.junit.vintage' , module : 'junit-vintage-engine' } } test { useJUnitPlatform() }