Why HATEOAS starts creating issue for spring-boot version >= 2.2.x during startup with Swagger 2.x?

前端 未结 14 2225
忘掉有多难
忘掉有多难 2020-12-09 15:18

I moved my project from spring-boot 2.1.9 to 2.2.0.

While starting the project, I am facing the below error messages.

Caused by: org.sprin         


        
14条回答
  •  失恋的感觉
    2020-12-09 16:00

    For Spring boot version 2.1.3.RELEASE users, the following dependencies work fine for hateoas+swagger:

        
            org.springframework.boot
            spring-boot-starter-hateoas
        
        
            io.springfox
            springfox-swagger2
            2.9.2
        
        
            io.springfox
            springfox-swagger-ui
            2.9.2
        
    

提交回复
热议问题