“The Bean Validation API is on the classpath but no implementation could be found” preventing startup

前端 未结 3 1967
日久生厌
日久生厌 2021-02-19 08:32

I am using Spring Tool Suite to work with ReST services in Java. But at the very first point I am not able to start my first simple application. Please help. I am getting below

3条回答
  •  逝去的感伤
    2021-02-19 09:13

    In my case, I added the following dependency and its worked, Even I do not need any validation, maybe the Java update caused this issue.

    
      org.springframework.boot
      spring-boot-starter-validation
    
    

提交回复
热议问题