带有spring安全性的集成测试

带有spring安全性的集成测试,第1张

带有spring安全性的集成测试

在Spring安全参考中的10.1节中指出,为了能够测试Spring安全功能,您需要将安全过滤器链集成到MockMvc对象中,如@Before设置方法中的示例所示。

import static org.springframework.security.test.web.servlet.setup.SecurityMockMvcConfigurers.*;@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration@WebAppConfigurationpublic class CsrfShowcaseTests {    @Autowired    private WebApplicationContext context;    private MockMvc mvc;    @Before    public void setup() {        mvc = MockMvcBuilders .webAppContextSetup(context) .apply(springSecurity()) .build();    }...}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5441813.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存