SpringBootTest annotation cannot be resolved to a type

Yung·2022년 10월 15일

JPA

목록 보기
4/4

https://stackoverflow.com/questions/52309445/springboottest-annotation-cannot-be-resolved-to-a-type

변경 전

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
	</dependency>

변경 후

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <!--<scope>test</scope>-->
	</dependency>

0개의 댓글