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

前端 未结 4 1475
一向
一向 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:27

    You are using org.springframework.boot.context.web.SpringBootServletInitializer this is deprecated. Instead:

    Use

    org.springframework.boot.web.support.SpringBootServletInitializer

    For SpringBoot 2.0

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

提交回复
热议问题