Spring mockMvc doesn't consider validation in my test

后端 未结 3 1530
傲寒
傲寒 2020-12-09 10:03

I am trying to set up an integration testing with mockMvc, and i have a problem with it. Indeed, spring doesn\'t integrate any validation annotation.
For more precisio

3条回答
  •  我在风中等你
    2020-12-09 10:07

    I got same problem, after updating validator to 5.1.0.Final. Application is working perfectly but REST tests not (@Valid annotation is not considered at all). I resolved the problem with adding one additional dependency only for tests:

       
         javax.el
         javax.el-api
         2.2.4
         test
      
    

提交回复
热议问题