What are the jars needed for only Spring-MVC?

前端 未结 2 1120
被撕碎了的回忆
被撕碎了的回忆 2021-01-13 21:49

I need to run the Spring-MVC in my scratch project. At the same time i have minimum memory area to store all the jar files. So any body recommend me only need for the Spring

2条回答
  •  走了就别回头了
    2021-01-13 22:28

    according to maven, spring-webmvc 3.1.2 need following jar:

    • aopalliance-1.0.jar
    • commons-logging-1.1.1.jar
    • spring-webmvc-3.1.2.RELEASE.jar
    • spring-asm-3.1.2.RELEASE.jar
    • spring-beans-3.1.2.RELEASE.jar
    • spring-core-3.1.2.RELEASE.jar
    • spring-context-3.1.2.RELEASE.jar
    • spring-aop-3.1.2.RELEASE.jar
    • spring-expression-3.1.2.RELEASE.jar
    • spring-context-support-3.1.2.RELEASE.jar
    • spring-web-3.1.2.RELEASE.jar

    things provided by servlet container (f.e. servlet-api) are left out.

提交回复
热议问题