В этом проекте Spring Boot 4 я не могу разрешить импорт @DataJpaTest.
Я аннулировал кеш, удалил все, что мог, но все равно безуспешно.
Это мой тест
Код: Выделить всё
@DataJpaTest
@Transactional
class RepositoryIntegrationTest {
Код: Выделить всё
dependencies {
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.boot:spring-boot-webmvc-test'
// Spring Data JPA
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
// Database in-memory (H2)
runtimeOnly 'com.h2database:h2'
}
Подробнее здесь: https://stackoverflow.com/questions/798 ... oot-4-test
Мобильная версия