I have Spring project generated by maven and my JSP insert.jsp in /target/m2e-wtp/web-resources and it looks like this:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Library</title>
</head>
<body>
<h1>Insert record</h1>
<form action="InsertBook" method="POST">
Title: <input type="text" name="title"/><br>
Author: <input type="text" name="author"/><br>
Category: <select name="category">
<c:forEach var="cat" items="${categories}">
<option>${cat}</option>
</c:forEach>
</select>
<input type="submit" value="insert"/>
</form>
</body>
The Controler is located in /src/main/java/com/mypackage/web/InsertBook.java and code is here:
package com.mypackage.web;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Servlet implementation class InsertBook
*/
public class InsertBook extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response){
logger.info("GOT IT.");
}
private static final Logger logger = LoggerFactory.getLogger(HomeController.class);
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
if (request.getCharacterEncoding() == null) {
request.setCharacterEncoding("UTF-8");
}
String title = request.getParameter("title");
String author = request.getParameter("author");
logger.info("GOT IT.");
RequestDispatcher rd = request.getRequestDispatcher("register");
rd.forward(request, response);
}
}
And servlet-context.xml code here:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="com.mypackage.web" />
<resources location="/resources/**" mapping="/src/webapp/resources"/>
I got the message form tomcat server, when trying to access this JSP:
INFO : com.mypackage.web.HomeController - Welcome home! The client locale is cs.
WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/web/<c:url value=] in DispatcherServlet with name 'appServlet'
Could anybody please show me, how to access the values filled in to the form in JSP via the controller and then print them out - for example via logger?
