@SpringBootTest的问题:上下文没有加载,Spock无法@Autowire

前端之家收集整理的这篇文章主要介绍了@SpringBootTest的问题:上下文没有加载,Spock无法@Autowire前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我刚刚转到Spring Boot 1.4.0来使用新的测试功能.但是,我似乎无法将它们与Spock Framework结合使用.请考虑以下规范:

@SpringBootTest(classes=[MainWebApplication.class],webEnvironment =SpringBootTest.WebEnvironment.RANDOM_PORT)
class RestTemplateExampleSpec extends Specification{

@Autowired
private TestRestTemplate restTemplate

def "Web application is Reachable and Status is 200 - OK"(){

    when: "The root address is called"
    def response = restTemplate.getForObject("/",String.class)

    then: "The status code is 200 - OK"
    response.statusCode == HttpStatus.OK

}

def "Endpoint /admin/users is available"(){

    when: "/admin/users is called"
    def response = restTemplate.getForEntity("/admin/users",String.class)

    then: "The status code is 200 - OK"
    response.statusCode == HttpStatus.OK

    }

}

问题是注释似乎甚至无法找到MainWebApplication.class(坐在层次结构中更高的包上),因此,没有上下文,因此没有Autowire.我意识到这是一个非常新的东西,但到目前为止的文档并不是很好,所以可能这个问题也会对其他人有所帮助.

最佳答案
当前版本的Spock与Spring Boot 1.4的@SpringBootTest注释不兼容,如果您希望使用新注释,则应将Spock版本升级到1.1.

有关更多详细信息,请参阅this answer.

原文链接:https://www.f2er.com/springboot/431354.html

猜你在找的Springboot相关文章