What are the jars needed for only Spring-MVC?

Adalarasan_New picture Adalarasan_New · Dec 3, 2012 · Viewed 26.5k times · Source

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-MVC not any other jar files. Thanks in Advance.

Answer

Yevgeniy picture Yevgeniy · Dec 3, 2012

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.