Spring Web MVC.
Here is the list of declaration for spring-webmvc. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>3.2.1.RELEASE</version> </dependency>
If you think this Maven repository POM file listing for spring-webmvc is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The spring-webmvc-3.2.1.RELEASE has 32 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Template | freemarker 2.3.15 FreeMarker is a "template engine"; a generic tool to generate text output based on templates. | 51 |
Development | tiles-request-api 1.0.1 API for the Tiles Request framework. | 15 |
Report | jasperreports 2.0.5 JasperReports Library | 49 |
itext 2.1.7 iText, a free Java-PDF library | 84 | |
Spring | spring-web 3.2.1.RELEASE Spring Web | 10 |
Spring | spring-context 3.2.1.RELEASE Spring Context | 14 |
Development | tiles-api 2.1.2 Tiles APIs, containing interfaces and classes to interact with Tiles. | 29 |
Development | tiles-core 3.0.1 Tiles Core Library, including basic implementation of the APIs. | 15 |
JSON | jackson-mapper-asl 1.4.2 Data Mapper package is a high-performance data binding package built on Jackson JSON processor | 73 |
JSP | tiles-jsp 2.1.2 Tiles JSP support: Classes and tag libraries to use Tiles in a JSP environment. | 30 |
Spring | spring-expression 3.2.1.RELEASE Spring Expression Language (SpEL) | 9 |
Development | tiles-api 3.0.1 Tiles APIs, containing interfaces and classes to interact with Tiles. | 15 |
JSP | tiles-jsp 3.0.1 Tiles JSP support: Classes and tag libraries to use Tiles in a JSP environment. | 15 |
Development | tiles-el 3.0.1 Tiles EL (Expression Language) support: Classes and tag libraries to use EL as an expression language in attribute expressions. | 15 |
Spring | spring-beans 3.2.1.RELEASE Spring Beans | 15 |
Swing JavaFX | jxl 2.6.3 JExcelApi is a java library which provides the ability to read, write, and modify Microsoft Excel spreadsheets. | 21 |
Parser | rome 1.0 All Roads Lead to ROME. ROME is a set of Atom/RSS Java utilities that make it easy to work in Java with most syndication formats. Today it accepts all flavors of RSS (0.90, 0.91, 0.92, 0.93, 0.94, 1.0 and 2.0), Atom 0.3 and Atom 1.0 feeds. Rome includes a set of parsers and generators for the... | 71 |
XML Graphics | poi 3.0.2-FINAL Apache POI - Java API To Access Microsoft Format Files | 39 |
Development | tiles-core 2.1.2 Tiles Core Library, including basic implementation of the APIs. | 30 |
Servlet | tiles-servlet 2.1.2 Tiles servlet support, to enable use of Tiles inside a Servlet environment. | 30 |
Development | tiles-extras 3.0.1 Extras for Tiles, including non-standard, non-generic, non-identifiable components that may be useful for Tiles users. | 14 |
Servlet | tiles-servlet 3.0.1 Tiles servlet support, to enable use of Tiles inside a Servlet environment. | 15 |
Spring | spring-core 3.2.1.RELEASE Spring Core | 18 |
The following packages are defined in the spring-webmvc-3.2.1.RELEASE.jar
org.springframework.web.servlet org.springframework.web.servlet.config org.springframework.web.servlet.config.annotation org.springframework.web.servlet.handler org.springframework.web.servlet.i18n org.springframework.web.servlet.mvc org.springframework.web.servlet.mvc.annotation org.springframework.web.servlet.mvc.condition org.springframework.web.servlet.mvc.method org.springframework.web.servlet.mvc.method.annotation org.springframework.web.servlet.mvc.multiaction org.springframework.web.servlet.mvc.support org.springframework.web.servlet.resource org.springframework.web.servlet.support org.springframework.web.servlet.tags org.springframework.web.servlet.tags.form org.springframework.web.servlet.theme org.springframework.web.servlet.view org.springframework.web.servlet.view.document org.springframework.web.servlet.view.feed org.springframework.web.servlet.view.freemarker org.springframework.web.servlet.view.jasperreports org.springframework.web.servlet.view.json org.springframework.web.servlet.view.tiles2 org.springframework.web.servlet.view.tiles3 org.springframework.web.servlet.view.velocity org.springframework.web.servlet.view.xml org.springframework.web.servlet.view.xslt
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>3.2.1.RELEASE</version> <name>Spring Web MVC</name> <description>Spring Web MVC</description> <url>https://github.com/SpringSource/spring-framework</url> <organization> <name>SpringSource</name> <url>http://springsource.org/spring-framework</url> </organization> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/SpringSource/spring-framework</connection> <developerConnection>scm:git:git://github.com/SpringSource/spring-framework</developerConnection> <url>https://github.com/SpringSource/spring-framework</url> </scm> <dependencies> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.15</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-request-api</artifactId> <version>1.0.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>jasperreports</groupId> <artifactId>jasperreports</artifactId> <version>2.0.5</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>xml-apis</artifactId> <groupId>xml-apis</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>com.lowagie</groupId> <artifactId>itext</artifactId> <version>2.1.7</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>javax.el</groupId> <artifactId>el-api</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>3.2.1.RELEASE</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>3.2.1.RELEASE</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-oxm</artifactId> <version>3.2.1.RELEASE</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-api</artifactId> <version>2.1.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-core</artifactId> <version>3.0.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.4.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-jsp</artifactId> <version>2.1.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>3.2.1.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-api</artifactId> <version>3.0.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-jsp</artifactId> <version>3.0.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> <version>1.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-el</artifactId> <version>3.0.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>3.2.1.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId> <version>2.6.3</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>rome</groupId> <artifactId>rome</artifactId> <version>1.0</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.0.2-FINAL</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-core</artifactId> <version>2.1.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-servlet</artifactId> <version>2.1.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>3.2.1.RELEASE</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.0.1</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-extras</artifactId> <version>3.0.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.tiles</groupId> <artifactId>tiles-servlet</artifactId> <version>3.0.1</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>velocity-tools</groupId> <artifactId>velocity-tools-view</artifactId> <version>1.4</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>3.2.1.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>velocity</groupId> <artifactId>velocity</artifactId> <version>1.5</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>