- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 SpringBoot 并且我有一个 DataJpaTest,但是当我运行测试类时,我得到这个 StackTrace:
java.lang.IllegalStateException: Failed to load ApplicationContext
at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:124)
at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:83)
at org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener.prepareTestInstance(SpringBootDependencyInjectionTestExecutionListener.java:47)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:230)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:228)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:287)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:289)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:247)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:51)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:237)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'restTemplate' defined in br.com.mobtrack.api.MobTrackApplication: Unsatisfied dependency expressed through method 'restTemplate' parameter 0; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'org.springframework.boot.web.client.RestTemplateBuilder' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:749)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:467)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1134)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1028)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:513)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:759)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:866)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:542)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:761)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:371)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:111)
at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:98)
at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:116)
... 28 more
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'org.springframework.boot.web.client.RestTemplateBuilder' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoMatchingBeanFound(DefaultListableBeanFactory.java:1474)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1102)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1064)
at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:835)
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:741)
我认为发生这种情况是因为我的 Application
类中有一个 RestTemplate
bean,如下所示:
@SpringBootApplication
public class TestApplication {
public static void main(String[] args) {
SpringApplication.run(TestApplication.class, args);
}
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
return builder.build();
}
}
这是我的测试类:
@RunWith(SpringRunner.class)
@DataJpaTest
public class CityRepositoryTest {
@Autowired
private TestEntityManager entityManager;
@Autowired
private CityRepository cityRepository;
private City city;
@Before
public void init() {
city = new City();
city.setName("New York");
city.setImage("http://www.mockimage.com");
}
@Test
public void findByNameShouldReturnCity() throws Exception {
this.entityManager.persist(city);
Optional<City> hasCity = this.cityRepository.findByNameIgnoreCase("New York");
city = hasCity.get();
assertThat(city.getId()).isNotNull();
assertThat(city.getName()).isEqualTo("New York");
assertThat(city.getImage()).isEqualTo("http://www.mockimage.com");
}
@Test
public void findByNameStartingWithShouldReturnCity() throws Exception {
this.entityManager.persist(city);
Optional<City> hasCity = this.cityRepository.findByNameStartingWithIgnoreCase("New");
city = hasCity.get();
assertThat(city.getId()).isNotNull();
assertThat(city.getName()).isEqualTo("New York");
assertThat(city.getImage()).isEqualTo("http://www.mockimage.com");
}
@Test
public void findByNameWhenNoCityShouldReturnFalse() throws Exception {
this.entityManager.persist(city);
Optional<City> hasCity = this.cityRepository.findByNameStartingWithIgnoreCase("Ohaio");
assertThat(hasCity.isPresent()).isFalse();
}
}
欢迎任何帮助,非常感谢!
最佳答案
我不喜欢其他解决方案,因为我确实希望我的应用程序使用 spring 提供的 RestTemplateBuilder,因为它提供了一些默认消息转换器和运行我的应用程序时所需的其他功能。
但是我发现了 2 种方法来改变我的测试以使我的 DataJpaTest 运行,但不确定哪个是最好的:
方法一 - 在您的测试中提供一个模拟的 RestTemplate。
@RunWith(SpringRunner.class)
@DataJpaTest
public class SomeTest {
@MockBean
private RestTemplate restTemplate;
方法二 - 添加 AutoConfigureWebClient 注释,以便 spring 连接 RestTemplateBuilder
@RunWith(SpringRunner.class)
@DataJpaTest
@AutoConfigureWebClient
public class SomeTest {
通过这两种方式,我可以在我的应用程序类中保留我现有的已配置 rest 模板:
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
return builder.build();
}
关于java - UnsatisfiedDependencyException 在 SpringBoot 中使用 @DataJpaTest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42415257/
我试图找出为什么我的单元测试不起作用。我看到 Hibernate 在更新之前做了一个插入。 为什么这样做? 是测试失败的原因吗? 我已经为测试环境设置了 hsqldb,该服务在 mysql 中似乎运行
我有一个使用 Spring Boot 的中等大小的项目,我正在尝试创建我的第一个带有嵌入式 H2 的 DataJpaTest,但我收到以下异常: org.hibernate.tool.schema.s
我有一个名为 TagRepository 的 spring-data-jpa 存储库。我的 spring-boot 版本是 2.1.2。我在运行时范围内使用 H2 依赖项,我打算将它用于应用程序和集成
在一个SpringBoot应用中,我想对repository层做一些测试。 @RunWith(SpringRunner.class) @DataJpaTest public class VisitRe
我有一个 Employee具有以下列的实体: @Entity class Employee { @Column(name = "first_name", length = 14) privat
默认 @DataJpaTest扫描所有 jpa 存储库和 @Entity .就我而言,我有 5 个存储库包和 5 个实体包。例如 com.acme.product.entity与....关联com.a
让我们假设一个自定义基础 JpaRepository实现如下。 public class SimpleCustomJpaRepository extends SimpleJpaRepository i
在 Windows (+ Maven) 上,我对 Métro 词的 é 有疑问。我的 sql 文件是用 UTF-8 编码的。我在 Unix 服务器上确实遇到了这个问题。 我的 Maven 错误: ex
我正在尝试使用 Spring @DataJpaTest 注释创建存储库测试。即使是简单的演示项目,我也会收到 IllegalArgumentException: Unknown entity。我错过了
我想用 Spring Boot 测试一个存储库,并想包含 TestEntityManager 来检查存储库是否真的做了它应该做的事情。 那是 JUnit 测试: @RunWith(SpringRunn
我正在尝试使用 @DataJpaTest 设置我的数据库单元测试注释以避免加载完整的 Spring 应用程序上下文。但它的执行方式与我使用 @SpringBootTest 时的方式不同。 + 配置的
我尝试使用注释 @DataJpaTest 编写集成测试。 我有两个数据源:主要和次要(类配置) 结果我有一个错误: expected single matching bean but found 2:
我正在使用 SpringBoot/Kotlin/JPA/Hibernate/Junit 并拥有 JpaServiceTest 类来执行与单个实体相关的存储库方法。 JpaService 类的方法名称遵
我使用@DataJpaTest 注释创建了一个测试。 hsqldb 已配置,但出现错误: No qualifying bean of type [org.springframework.jdbc.co
我编写了这个包含自定义查询的存储库: @Repository interface PersonRepository : JpaRepository { @Query("UPDATE Perso
我想将测试容器与 @DataJpaTest 一起使用(和 @SpringBootTest )使用 JUnit 5。我使用 @Testcontainers 进行基本设置工作和 @Container像这样
我在数据层中有几个实体以特定的架构存储。例如: @Entity @Table(name = "FOO", schema = "DUMMY") public class Foo {} 我正在尝试设置H2
我想使用 Controller 和存储库通过 Spring Boot 上下文配置创建完整的 JUnit 测试。我的测试类如下所示: @RunWith(SpringRunner.class) @Spri
Spring boot @DataJpaTest exclude filter donsn't work 我见过这个问题,但就我而言,他的方法不起作用。 我必须使用存储过程从 SQL 服务器检索数据,
我正在从 spring-boot 1.5.x 迁移到 2.0.4,并注意到 @DataJpaTest 的一个有趣的案例/行为 我有一个测试 @ExtendWith(SpringExtension.cl
我是一名优秀的程序员,十分优秀!