org.springframework.boot.web.support does not exist

前端 未结 4 1366
一向
一向 2021-02-12 09:48

I\'m changing build systems from maven to gradle for a spring boot project. I get this stacktrace

19:03:08: Executing external task \'bootRun\'...
/home/dac/proj         


        
4条回答
  •  我寻月下人不归
    2021-02-12 10:16

    org.springframework.boot.web.support.SpringBootServletInitializer 
    

    is deprecated.

    use below instead:

    org.springframework.boot.web.servlet.support.SpringBootServletInitializer
    

提交回复
热议问题