gpt4 book ai didi

java - 如何在 Spring Maven 中通过 Junit 测试获取 Spring 配置

转载 作者:太空宇宙 更新时间:2023-11-04 14:33:17 25 4
gpt4 key购买 nike

我需要运行 junit 测试用例。在我的 Controller 中,我有 Autowiring 的类,这些类将在运行时配置。我需要在运行 junit 测试本身时完成配置。任何人都可以为此提供解决方案..

最佳答案

您可以使用下面的代码片段

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({ "classpath:spring-context.xml"})
public class TestClass {
@Autowired
private SomeServiceClass service;

@Test
public void testMethod() {
// your code goes here
}
}

对于 Spring 测试依赖项,您可以使用

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>

关于java - 如何在 Spring Maven 中通过 Junit 测试获取 Spring 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25888996/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com