search

Home  >  Q&A  >  body text

java - 关于maven中的包冲突,是否需要全部都处理掉?

黄舟黄舟2767 days ago520

reply all(2)I'll reply

  • 怪我咯

    怪我咯2017-04-18 10:42:09

    1. Generally there is no need to deal with it, but if there is a conflict between jar packages, you can only check them one by one. .

    2. spring-web and spring-webmvc.

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-18 10:42:09

    No need to deal with duplicate dependencies.

    spring-web provides core HTTP integration, including some convenient Servlet filters, Spring HTTP Invoker, and infrastructure for integration with other web frameworks and HTTP technologies.

    spring-webmvc is the implementation of Spring MVC. spring-webmvc depends on spring-web, so you don't have to add spring-web explicitly.

    reply
    0
  • Cancelreply