springframework.test не импортирует - PullRequest
0 голосов
/ 21 апреля 2020

Я пытаюсь создать проект с загрузкой Spring и Maven, но продолжаю получать ошибки «невозможно решить», когда пытаюсь импортировать тестовую часть. У меня есть тест в моем пом. xml, но я продолжаю получать ошибки. Любая помощь будет высоко ценится, спасибо! тестовый класс

import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class FinalProjV1ApplicationTests {
}

pom. xml

<dependencies>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
        </dependency>
    </dependencies>

Я удалил часть кода, поскольку он не показался важным, и в этом вопросе уже было слишком много кода

1 Ответ

0 голосов
/ 21 апреля 2020

SpringRunner является частью JUnit4 (как указано в импорте), а JUnit4 не входит в ваши зависимости.

Ваша версия Spring Boot, вероятно, использует JUnit5.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...