스프링 부트와 AWS로 혼자 구현하는 웹 서비스3 [스프링 부트와 AWS로 혼자 구현하는 웹 서비스] 2장 TEST 코드 더보기 package com.jojoldu.book.springboot; import com.jojoldu.book.springboot.web.HelloController; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; import org.springframework.test.context.junit.jupiter.SpringExtension; //impo.. 2022. 6. 22. [IntelliJ]No tests found for given includes: 오류 해결법 File > Settings (Ctrl + shift + s) > Build,Excevution, Deployment > Build Tools > Gradle 선택 Gradel로 되어있는 두 부분을 IntelliJ IDEA 로 변경 -> 해결! 2022. 6. 21. [스프링 부트와 AWS로 혼자 구현하는 웹 서비스]build.gradle 오류 해결. gradle 반영 reload하기_윈도우 - 책에 나와있는 대로 compile() testCompile() 하면 오류나고 compielClasspath() , testCompileClasspath() 로 해야 오류가 해결된다. - jcenter가 더이상 지원되지 않아 일단 주석처리를 하였다. buildscript { ext { springBootVersion = '2.1.7.RELEASE' } repositories { mavenCentral() // jcenter() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'java' apply plugin: 'eclipse' apply.. 2022. 6. 21. 이전 1 다음