How to upgrade ALL the spring dependency?

后端 未结 4 1725
情话喂你
情话喂你 2021-02-06 19:54

I have a spring-webmvc based web application. It used the org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer which is not

4条回答
  •  独厮守ぢ
    2021-02-06 20:27

    If you using maven build tool,so it's very simple to upgrade spring 3 to spring 4 you just open pom.xml file in the properties xml tag just change the version 3.x.x to 4 something. e.g:

    3.0.2.RELEASE
    

    to

    4.0.2.RELEASE
    

提交回复
热议问题