게시글
질문&답변
2020.12.02
강의 중 springframework import 에 문제가 생긴것 같아요 ,,
gradle을 다시 refresh하니 다시 정상적으로 동작합니다 ㅜㅜㅜ 감사합니다 !!!
- 0
- 4
- 1.1K
질문&답변
2020.12.02
강의 중 springframework import 에 문제가 생긴것 같아요 ,,
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()}
- 0
- 4
- 1.1K