작성
·
1.1K
0
강의 진행 하다가 시간이 지난 후 다시 강의를 진행하려고 하는데
IntelliJ를 열어서 실습 진행하려고 하는데 갑자기
Cannot resolve symbol 'springframework' 이라는 오류가 뜨면서
springframework import에 문제가 생긴 것 같은데 어느 부분을 확인해 봐야할까요 ?
답변 4
1
0
0
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