* Implement examples for ASCII Art in Java * Remove deprecated use of ControllerClassNameHandlerMapping * Implement examples for JSTL core tag * Implement examples for JSTL formatting tags * Implement examples for JSTL SQL tags * Implement examples for JSTL XML tags * Implement examples for JSTL function tags * Setup controllers package scanning * Add link to article on jstl * naming change * Add jstl maven repository * Migrate example codes for Guide to JSTL to spring-mvc-forms-jsp module * Add view resolver order to define priority * Remove guide to jstl example codes from spring-mvc-xml module * Remove guide to jstl examples in spring-mvc-xml module after merge * Update link to article
		
			
				
	
	
		
			131 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0"?>
 | |
| <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>com.baeldung</groupId>
 | |
|     <version>0.1-SNAPSHOT</version>
 | |
|     <artifactId>spring-mvc-forms-jsp</artifactId>
 | |
| 
 | |
|     <name>spring-mvc-forms-jsp</name>
 | |
|     <packaging>war</packaging>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>org.springframework</groupId>
 | |
|             <artifactId>spring-webmvc</artifactId>
 | |
|             <version>${springframework.version}</version>
 | |
|             <exclusions>
 | |
|                 <exclusion>
 | |
|                     <artifactId>commons-logging</artifactId>
 | |
|                     <groupId>commons-logging</groupId>
 | |
|                 </exclusion>
 | |
|             </exclusions>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>javax.servlet</groupId>
 | |
|             <artifactId>javax.servlet-api</artifactId>
 | |
|             <version>${javax.servlet-api.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>javax.servlet.jsp</groupId>
 | |
|             <artifactId>javax.servlet.jsp-api</artifactId>
 | |
|             <version>${javax.servlet.jsp-api.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>javax.servlet</groupId>
 | |
|             <artifactId>jstl</artifactId>
 | |
|             <version>${jstl.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>mysql</groupId>
 | |
|             <artifactId>mysql-connector-java</artifactId>
 | |
|             <version>6.0.6</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>org.hibernate</groupId>
 | |
|             <artifactId>hibernate-validator</artifactId>
 | |
|             <version>${hibernate-validator.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
|         <dependency>
 | |
|             <groupId>commons-fileupload</groupId>
 | |
|             <artifactId>commons-fileupload</artifactId>
 | |
|             <version>${fileupload.version}</version>
 | |
|         </dependency>
 | |
|         <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
 | |
|         <dependency>
 | |
|             <groupId>com.fasterxml.jackson.core</groupId>
 | |
|             <artifactId>jackson-databind</artifactId>
 | |
|             <version>${jackson.version}</version>
 | |
|         </dependency>
 | |
| 
 | |
| 
 | |
|     </dependencies>
 | |
|     <profiles>
 | |
|         <!-- Local -->
 | |
|         <profile>
 | |
|             <id>spring-mvc-forms</id>
 | |
|             <activation>
 | |
|                 <activeByDefault>true</activeByDefault>
 | |
|             </activation>
 | |
|             <build>
 | |
|                 <pluginManagement>
 | |
|                     <plugins>
 | |
| 
 | |
|                         <plugin>
 | |
|                             <groupId>org.apache.maven.plugins</groupId>
 | |
|                             <artifactId>maven-war-plugin</artifactId>
 | |
|                             <version>${maven-war-plugin.version}</version>
 | |
|                             <configuration>
 | |
|                                 <warSourceDirectory>src/main/webapp</warSourceDirectory>
 | |
|                                 <warName>spring-mvc-forms</warName>
 | |
|                                 <failOnMissingWebXml>false</failOnMissingWebXml>
 | |
|                                 <outputDirectory>${deploy-path}</outputDirectory>
 | |
|                             </configuration>
 | |
|                         </plugin>
 | |
| 
 | |
|                     </plugins>
 | |
|                 </pluginManagement>
 | |
|                 <finalName>spring-mvc-forms</finalName>
 | |
|             </build>
 | |
|         </profile>
 | |
|     </profiles>
 | |
| 
 | |
|     <repositories>
 | |
|         <repository>
 | |
|             <id>1</id>
 | |
|             <name>jstl</name>
 | |
|             <url>https://mvnrepository.com/artifact/javax.servlet/jstl</url>
 | |
|         </repository>
 | |
|     </repositories>
 | |
| 
 | |
|     <properties>
 | |
|         <springframework.version>4.3.7.RELEASE</springframework.version>
 | |
|         <maven-war-plugin.version>2.6</maven-war-plugin.version>
 | |
|         <jstl.version>1.2</jstl.version>
 | |
|         <javax.servlet.jsp-api.version>2.3.1</javax.servlet.jsp-api.version>
 | |
|         <javax.servlet-api.version>3.1.0</javax.servlet-api.version>
 | |
|         <hibernate-validator.version>5.4.0.Final</hibernate-validator.version>
 | |
|         <deploy-path>server default deploy directory</deploy-path>
 | |
|         <fileupload.version>1.3.2</fileupload.version>
 | |
|         <jackson.version>2.8.7</jackson.version><!-- persistence -->
 | |
|         <hibernate.version>5.2.5.Final</hibernate.version>
 | |
|         <mysql-connector-java.version>5.1.40</mysql-connector-java.version>
 | |
|     </properties>
 | |
| 
 | |
| </project>
 | |
| 
 |