해결된 질문
작성
·
581
3
plugins {
id 'org.springframework.boot' version '2.7.2'
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
id 'java'
}
apply plugin: 'idea'
group = 'jpabook'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-devtools'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
tasks.named('test') {
useJUnitPlatform()
}
답변 2
6
안녕하세요. blackbird7님, 공식 서포터즈 OMG입니다.
Assert import 가 안되는 부분은 아래 build.gradle로 바꿔주세요
plugins {
id 'org.springframework.boot' version '2.7.2'
id 'io.spring.dependency-management' version '1.0.12.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
//JUnit4 추가
testImplementation("org.junit.vintage:junit-vintage-engine") {
exclude group: "org.hamcrest", module: "hamcrest-core"
}
}
tasks.named('test') {
useJUnitPlatform()
}
devtools가 안된다고 하셨는데 오류 내용을 올려주세요.
감사합니다.
1
감사합니다! 빨간줄이 사라졌어요.
devtools같은 경우에는 오류라기보다는 (코드에 빨간줄 뜨는게 아니라) Build > Recompile 'hello.html' 한 다음 새로고침 눌렀을 때 수정한 것이 반영이 안 됐어요.
'안녕하세요' -> '안녕' 이게 IntelliJ에서 서버 안 끄고는 변경이 안 되서 찾아보니 어떤 분이 질문에 이런 방법이 있다고 올려주신게 있더라고요. 그래서 알려준 내용대로 apply plugin: 'idea' 하고 다른 세팅하니 되더라고요.
https://www.inflearn.com/course/스프링부트-JPA-활용-1/unit/24277?tab=community&q=152186