gpt4 book ai didi

springSecurityFilterChain 不能为空

转载 作者:行者123 更新时间:2023-12-03 07:51:14 26 4
gpt4 key购买 nike

我正在使用 Spring Boot 1.4.0.M2 并且我编写了以下测试用例以确保具有 spring 安全性的 Controller 正常运行。

@RunWith(SpringRunner.class)
@WebMvcTest(HelloController.class)
public class HelloControllerTest {

@Autowired
private WebApplicationContext wac;

private MockMvc mockMvc;

@Before
public void setUp() {
mockMvc = MockMvcBuilders
.webAppContextSetup(wac)
.alwaysDo(print())
.apply(springSecurity())
.build();
}

@Test
public void getHelloShouldReturnWithCacheControlSet() throws Exception {
this.mockMvc.perform(get("/hello")
.accept(MediaType.TEXT_PLAIN))
.andExpect(status().isOk())
.andExpect(content().string("Hello World!"))
.andExpect(header().stringValues("Cache-Control", "max-age=5"));
}
}

当我运行测试时,抛出以下异常:
java.lang.IllegalStateException: springSecurityFilterChain cannot be null. Ensure a Bean with the name springSecurityFilterChain implementing Filter is present or inject the Filter to be used.

所有其他代码都可以在这里找到: https://github.com/renewinkler84/http-cache-demo

为什么会抛出这个异常?我还需要配置什么?

最佳答案

我想你想念@SpringBootTest
改变这个

@WebMvcTest(HelloController.class)

有了这个
@SpringBootTest

关于springSecurityFilterChain 不能为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36826900/

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