是否可以将 @AutoConfigureRestDocs 与 restassured 而不是 mockmvc 一起使用?

Is it possible to use @AutoConfigureRestDocs with restassured instead of mockmvc?

Spring Boot 1.4 引入了 @AutoConfigureRestDocs(参见 http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-testing-spring-boot-applications-testing-autoconfigured-rest-docs)。文档状态:

It will automatically configure MockMvc to use Spring REST Docs and remove the need for Spring REST Docs' JUnit rule.

我想使用 Spring REST Docs 的可靠支持而不是 mockmvc。我可以用 @AutoConfigureRestDocs 做到这一点吗?

不,目前没有。 @AutoConfigureRestDocs 建立在 Spring 之上 Boot 的测试支持能够自动配置 MockMvc。不支持自动配置 REST Assured,REST Docs 自动配置可以在此基础上构建。如果您希望在 Spring Boot 中看到它,请 open an enhancement request