`
DavyJones2010
  • 浏览: 151851 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Spring MVC: Introduction II - Value Transmission between Controller and View

阅读更多

Outline:

1) Annotation Based Url Mapping Config

2) Pass Value from View to Controller

3) Pass Value from Controller to View

 

HandlerMapping

1) SimpleUrlHandlerMapping (Not often used)

<beans ...>
 
   <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
      <property name="mappings">
		<value>
			/index.htm=welcomeController
			/welcome.htm=welcomeController
			/main.htm=welcomeController
			/home.htm=welcomeController
		</value>
      </property>
   </bean>	
 
   <bean id="welcomeController" 
      class="com.mkyong.common.controller.WelcomeController" />
 
</beans>

2) ControllerBeanNameHandlerMapping (Not often userd)

<?xml version="1.0" encoding="UTF-8"?>  
<beans xmlns="http://www.springframework.org/schema/beans"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"  
    xmlns:mvc="http://www.springframework.org/schema/mvc"  
    xsi:schemaLocation="    
        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    
        http://www.springframework.org/schema/mvc    
        http://www.springframework.org/schema/context/spring-mvc.xsd">  
    <!-- Handler Mapping -->  
    <bean  
        class="org.springframework.web.servlet.mvc.support.ControllerBeanNameHandlerMapping" />  
  
    <bean name="/welcome.html" class="edu.xmu.webproject.controller.WelcomeController"></bean>  
 
</beans>

3) DefaultAnnotationHandlerMapping (Often used)

springmvc-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

	<context:component-scan base-package="edu.xmu.webproject.controller" />
	<mvc:annotation-driven />

	<!-- View Resolver for JSPs -->
	<bean
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/jsp/" />
		<property name="suffix" value=".jsp" />
	</bean>

</beans> 

HelloController.java

package edu.xmu.webproject.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloController
{
	// RequestMapping represents which url mapped to this method
	@RequestMapping({ "/hello", "/" })
	public String hello()
	{
		return "hello";
	}
}

hello.jsp

<%@ 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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
	<h1>Hello</h1>
</body>
</html>

Final Test



2. Value Transportation

1) Pass Value from View to Controller

HelloController.java

package edu.xmu.webproject.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;

@Controller
public class HelloController
{
	// RequestMapping represents which url mapped to this method
	@RequestMapping({ "/hello", "/" })
	public String hello(@RequestParam("username") String userName)
	{
		System.out.println("username=" + userName);
		return "hello";
	}
}

Request Url

http://localhost:8080/WebProject/hello?username=davy

Console Output

username=davy

Request Url

http://localhost:8080/WebProject/hello

Got HTTP Stauts 400 Error. Bad request.

Why? Cause spring-mvc supports RESTFUL style, as long as we pass the params, RESTFUL style regards that as a part of URL.

2) A more simple way to pass value from View to Controller

HelloController.java

package edu.xmu.webproject.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloController
{
	// RequestMapping represents which url mapped to this method
	@RequestMapping({ "/hello", "/" })
	public String hello(String username)
	{
		System.out.println("username=" + username);
		return "hello";
	}
}

We removed the annotation "@RequestParam". That requires "username" be exactly the same with the request url's param key.

http://localhost:8080/WebProject/hello?username=davy
# username=davy
http://localhost:8080/WebProject/hello
# username=null
http://localhost:8080/WebProject/hello?userName=davy
# username=null

3) Pass value from Controller to View

HelloController.java

package edu.xmu.webproject.controller;

import java.util.Map;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloController
{
	// RequestMapping represents which url mapped to this method
	@RequestMapping({ "/hello", "/" })
	public String hello(String username, Map<String, Object> context)
	{
		System.out.println("username=" + username);
		context.put("username", username);
		return "hello";
	}
}

hello.jsp

<%@ 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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
	<h1>Hello ${username}</h1>
</body>
</html>

Request Url

http://localhost:8080/WebProject/hello?username=davy

Output

Hello davy

4) A recommanded way to pass value from Controller to View

HelloController.java

package edu.xmu.webproject.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloController
{
	// RequestMapping represents which url mapped to this method
	@RequestMapping({ "/hello", "/" })
	public String hello(String username, Model model)
	{
		System.out.println("username=" + username);
		model.addAttribute("username", username);
		// The key is the type of the value, first letter lowercase
		model.addAttribute(username);
		return "hello";
	}
}

hello.jsp

<%@ 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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
	<h1>Hello ${username} & ${string}</h1>
</body>
</html>

 

3. Model Driven Value Transportation

What if we need to pass 20 params to the controller?

How should we encapsulate these params into Object/Model?

Example below shows how to use model driven to pass model between view and controller.

1) User.java

package edu.xmu.webproject.bean;

public class User
{
	private String username;
	private String password;
	private String nickname;
	private String email;

	public User(String username, String password, String nickname, String email)
	{
		super();
		this.username = username;
		this.password = password;
		this.nickname = nickname;
		this.email = email;
	}

	public User()
	{
		super();
	}

	public String getNickname()
	{
		return nickname;
	}

	public void setNickname(String nickname)
	{
		this.nickname = nickname;
	}

	public String getEmail()
	{
		return email;
	}

	public void setEmail(String email)
	{
		this.email = email;
	}

	public String getUsername()
	{
		return username;
	}

	public void setUsername(String username)
	{
		this.username = username;
	}

	public String getPassword()
	{
		return password;
	}

	public void setPassword(String password)
	{
		this.password = password;
	}

}

2) UserController.java

package edu.xmu.webproject.controller;

import java.util.HashMap;
import java.util.Map;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

import edu.xmu.webproject.bean.User;

@Controller
@RequestMapping("/user")
public class UserController
{
	private Map<String, User> userMap = new HashMap<String, User>();

	public UserController()
	{
		userMap.put("davy", new User("Davy", "Jones", "davy", "davy@gmail.com"));
		userMap.put("calypso", new User("Calypso", "Jones", "carl",
				"carl@gmail.com"));
		userMap.put("obama", new User("Obama", "Barack", "obama",
				"obama@gmail.com"));
		userMap.put("tom", new User("Tom", "Cruize", "tom", "tom@gmail.com"));
	}

	@RequestMapping(value = "/users", method = RequestMethod.GET)
	public String listAllUsers(Model model)
	{
		System.out.println("List all users");
		model.addAttribute("userMap", userMap);
		return "/user/list";
	}

	// This method nevigate us to the page for add user
	@RequestMapping(value = "/add", method = RequestMethod.GET)
	public String addUser(Model model)
	{
		System.out.println("Nevigate to add user page");
		// For the benefit of open model driven
		model.addAttribute("user", new User());
		return "/user/add";
	}

	// This method handle the request for add user
	@RequestMapping(value = "/add", method = RequestMethod.POST)
	public String addUser(User user)
	{
		System.out.println("Add user");

		String username = user.getUsername();
		userMap.put(username, user);
		return "redirect:/user/users";
	}
}

3) list.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
	<a href="add">Add User</a>
	<br />
	<c:forEach items="${userMap}" var="user">
		---------${user.value.username}
		---------${user.value.password}
		---------${user.value.nickname}
		---------${user.value.email}
		<br />
	</c:forEach>
</body>
</html>

4) add.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="sf"%>
<!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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
	<!-- Here we didn't assign an action for this form. -->
	<!-- By default, the form will be submitted to current path '/user/add' -->
	<!-- With the method POST -->
	<sf:form method="post" modelAttribute="user">
		username: <sf:input path="username" /> <sf:errors path="username"/>
		<br />
		password: <sf:input path="password" /><sf:errors path="password"/>
		<br />
		nickname: <sf:input path="nickname" />
		<br />
		email: <sf:input path="email" /><sf:errors path="email"/>
		<br />
		<input type="submit" value="Submit" />
	</sf:form>
</body>
</html>

5) springmvc-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

	<context:component-scan base-package="edu.xmu.webproject.controller" />
	<mvc:annotation-driven />

	<!-- View Resolver for JSPs -->
	<bean
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="viewClass"
			value="org.springframework.web.servlet.view.JstlView"></property>
		<property name="prefix" value="/WEB-INF/" />
		<property name="suffix" value=".jsp" />
	</bean>

</beans>  

6) web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
	id="WebApp_ID" version="3.0">
	<display-name>WebProject</display-name>
	
	<servlet>
		<servlet-name>springmvc</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<load-on-startup>1</load-on-startup>
	</servlet>

	<servlet-mapping>
		<servlet-name>springmvc</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>
</web-app>

7) pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>edu.xmu.web.WebProject</groupId>
	<artifactId>WebProject-Core</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<packaging>war</packaging>

	<properties>
		<spring.version>3.0.5.RELEASE</spring.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.1</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
			<scope>provided</scope>
		</dependency>
		<!-- Spring 3 dependencies -->
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-core</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-webmvc</artifactId>
			<version>${spring.version}</version>
		</dependency>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
			<version>${spring.version}</version>
		</dependency>

		<!-- JSTL -->
		<dependency>
			<groupId>jstl</groupId>
			<artifactId>jstl</artifactId>
			<version>1.2</version>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.1.1</version>
				<configuration>
					<webXml>WebContent\WEB-INF\web.xml</webXml>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

8) Final Test



Model Driven Summary:

1) Model from Controller to View to display user info:

1> Store beans to model

@RequestMapping(value = "/users", method = RequestMethod.GET)
public String listAllUsers(Model model)
{
	System.out.println("List all users");
	model.addAttribute("userMap", userMap);
	return "/user/list";
}

2> Use JSTL in JSP page in order to display model content

<!-- JSTL -->
<dependency>
	<groupId>jstl</groupId>
	<artifactId>jstl</artifactId>
	<version>1.2</version>
</dependency>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
...
<c:forEach items="${userMap}" var="user">
	---------${user.value.username}
	---------${user.value.password}
	---------${user.value.nickname}
	---------${user.value.email}
	<br />
</c:forEach>

2) Model from View to Controller to add user info:

1> Open model driven in controller, if we don't add User to model, then the view will not know the type of Model.

Exceptions below will occur:

十一月 09, 2013 8:29:48 下午 org.springframework.web.servlet.tags.RequestContextAwareTag doStartTag
严重: Neither BindingResult nor plain target object for bean name 'user' available as request attribute
java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'user' available as request attribute
// First way to open model driven
// This method nevigate us to the page for add user
@RequestMapping(value = "/add", method = RequestMethod.GET)
public String addUser(Model model)
{
	System.out.println("Nevigate to add user page");
	// For the benefit of open model driven
	model.addAttribute("user", new User());
	return "/user/add";
}
// Second way to open model driven
// This method nevigate us to the page for add user
@RequestMapping(value = "/add", method = RequestMethod.GET)
public String addUser(@ModelAttribute("user") User user)
{
	System.out.println("Nevigate to add user page");
	return "/user/add";
}
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="sf"%>
...
<sf:form method="post" modelAttribute="user">
	username: <sf:input path="username" /> <sf:errors path="username"/>
	<br />
	password: <sf:input path="password" /><sf:errors path="password"/>
	<br />
	nickname: <sf:input path="nickname" />
	<br />
	email: <sf:input path="email" /><sf:errors path="email"/>
	<br />
	<input type="submit" value="Submit" />
</sf:form>
// This method handle the request for add user
@RequestMapping(value = "/add", method = RequestMethod.POST)
public String addUser(User user)
{
	System.out.println("Add user");

	String username = user.getUsername();
	userMap.put(username, user);
	return "redirect:/user/users";
}

 

Reference Links:

1) http://www.mkyong.com/spring-mvc/configure-the-handler-mapping-priority-in-spring-mvc/

2) http://docs.spring.io/spring/docs/3.0.x/reference/mvc.html

  • 大小: 19.2 KB
  • 大小: 12.5 KB
  • 大小: 16.8 KB
  • 大小: 17.7 KB
  • 大小: 16.5 KB
分享到:
评论

相关推荐

    Spring MVC step-by-step 源码

    Spring MVC 是一个强大的Java Web开发框架,用于构建高效、可维护的Web应用程序。它基于Spring框架,提供了模型-视图-控制器(MVC)架构,简化了开发过程。本资源"Spring MVC step-by-step 源码"是针对初学者准备的...

    Spring MVC Designing Real-World Web Applications 无水印pdf 0分

    Spring MVC Designing Real-World Web Applications 英文无水印pdf pdf使用FoxitReader和PDF-XChangeViewer测试可以打开

    Spring.MVC-A.Tutorial-Spring.MVC学习指南 高清可复制版PDF

    首先,Spring MVC的核心设计理念是模型-视图-控制器(Model-View-Controller)架构模式。在该模式中,模型负责业务逻辑处理,视图负责展示数据,而控制器则作为模型和视图之间的桥梁,接收用户请求并调用相应的服务...

    SPRING MVC3.2案例讲解---配置

    &lt;artifactId&gt;spring-webmvc &lt;version&gt;3.2.x.RELEASE ``` 确保版本号与你的需求相匹配。 接下来,我们需要创建Spring的配置文件,通常命名为`servlet-context.xml`。在这个文件中,我们将配置Spring MVC的核心...

    Spring MVC, A Tutorial, second edition 【2016】

    The MVC in Spring MVC stands for Model-View-Controller, a design pattern widely used in Graphical User Interface (GUI) development. This pattern is not only common in web development, but is also ...

    spring-webmvc-5.0.9 jar包、源码和javadoc

    spring-webmvc-5.0.9.RELEASE-sources.jar则包含了源码,可以深入研究Spring Web MVC的实现细节,对于学习和调试都非常有帮助。 九、依赖管理 在实际项目中,Spring Web MVC往往与其他Spring模块如Core、AOP、Data...

    spring-mvc-test-sample-master.zip_spring mvc_springmvc-test

    10. **Unit Testing and Integration Testing**:在"spring-mvc-test-sample-master"项目中,很可能包含了对这些控制器和业务逻辑的单元测试以及集成测试,使用JUnit、Mockito等工具进行。 11. **Spring MVC Test ...

    the-mvc-spring-and-web-study.rar_Java spring mvc_The Web_mvc_spr

    标题 "the-mvc-spring-and-web-study.rar" 暗示了这是一个关于Spring MVC与Web开发相结合的学习资源,特别是针对Java平台。Spring MVC是Spring框架的一个重要组件,用于构建可伸缩、高性能的Web应用程序。它采用了...

    Spring集成MongoDB官方指定jar包:spring-data-mongodb-1.4.1.RELEASE.jar

    Spring集成MongoDB官方指定jar包:spring-data-mongodb-1.4.1.RELEASE.jar

    spring-mvc-step-by-step(PDF)

    ### Spring MVC:逐步掌握 #### 一、Spring MVC框架概览与环境搭建 Spring MVC是Spring框架中的一个模块,主要用于构建Web应用。它基于MVC(Model-View-Controller)设计模式,使得开发者能够清晰地分离业务逻辑、...

    Spring MVC--------我在创智软件的面试

    Spring MVC 是一个基于Java的轻量级Web应用框架,它为构建MVC(Model-View-Controller)架构的Web应用程序提供了强大的支持。在面试中,深入理解Spring MVC可以帮助你展示对Web开发的深入理解和技术实力。 1. **...

    全面掌握Spring MVC:从基础到高级的实践指南

    它基于Model-View-Controller(MVC)架构模式,旨在简化Web应用的开发流程。在这个模式中,Model代表业务逻辑,View负责数据显示,而Controller作为中间人处理用户请求并协调Model和View之间的交互。 1. Spring MVC...

    外文翻译Spring的MVC构架模式-CSDN下载

    Spring MVC是Spring框架中的一个核心组件,主要用于构建Web应用程序的模型-视图-控制器(Model-View-Controller)架构。它为开发者提供了灵活且强大的工具来处理HTTP请求、数据绑定、验证和视图渲染。本文将深入探讨...

    spring MVC step-by-step

    Spring MVC的核心概念包括控制器(Controller)、模型(Model)、视图(View)和调度器Servlet(DispatcherServlet)。控制器负责接收HTTP请求,模型包含了业务逻辑和数据,视图负责呈现结果,而调度器Servlet是...

    Spring Boot 2 Recipes: A Problem-Solution Approach

    framework, then dives into code snippets on how to apply and integrate Spring Boot 2 with the Spring MVC web framework, Spring Web Sockets, and microservices. You'll also get solutions to common ...

    看透Spring MVC:源代码分析与实践.pdf

    看透Spring MVC:源代码分析与实践

Global site tag (gtag.js) - Google Analytics