Spring MVC - Bean 名称 Url 处理程序映射示例

以下示例展示了如何使用 Spring Web MVC 框架使用 Bean 名称 URL 处理程序映射。 BeanNameUrlHandlerMapping 类是默认的处理程序映射类,它将 URL 请求映射到配置中提到的 bean 的名称。

实例


<beans>
   <bean class = "org.springframework.web.servlet.view.InternalResourceViewResolver">
      <property name = "prefix" value = "/WEB-INF/jsp/"/>
      <property name = "suffix" value = ".jsp"/>
   </bean>

   <bean class = "org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>

   <bean name = "/helloWorld.html" 
      class = "com.tutorialspoint.HelloController" />

   <bean name = "/hello*" 
      class = "com.tutorialspoint.HelloController" /> 

   <bean name = "/welcome.html"
      class = "com.tutorialspoint.WelcomeController"/>   
</beans>

例如,使用上面的配置,如果是URI

  • /helloWorld.htm 或 /hello{any letter}.htm 被请求,DispatcherServlet 会将请求转发给 HelloController

  • /welcome.htm 被请求,DispatcherServlet 会将请求转发给 WelcomeController

  • /welcome1.htm 被请求,DispatcherServlet 将找不到任何控制器,服务器将抛出 404 状态错误。

首先,让我们有一个工作的 Eclipse IDE,并考虑以下步骤来使用 Spring Web 框架开发一个基于动态表单的 Web 应用程序。

步骤 说明
1 在包 com.tutorialspoint 下创建一个名称为 TestWeb 的项目,如 Spring MVC - Hello World 一章中所述。
2 在 com.tutorialspoint 包下创建 Java 类 HelloController、WelcomeController。
3 在 jsp 子文件夹下创建视图文件 hello.jsp、welcome.jsp。
4 最后一步是创建所有源文件和配置文件的内容并导出应用程序,如下所述。

HelloController.java

实例


package com.tutorialspoint;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;

public class HelloController extends AbstractController{
  
   @Override
   protected ModelAndView handleRequestInternal(HttpServletRequest request,
      HttpServletResponse response) throws Exception {
      ModelAndView model = new ModelAndView("hello");
      model.addObject("message", "Hello World!");
      return model;
   }
}

WelcomeController.java

实例


package com.tutorialspoint;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;

public class WelcomeController extends AbstractController{
  
   @Override
   protected ModelAndView handleRequestInternal(HttpServletRequest request,
      HttpServletResponse response) throws Exception {
      ModelAndView model = new ModelAndView("welcome");
      model.addObject("message", "Welcome!");
      return model;
   }
}

TestWeb-servlet.xml

实例


<beans xmlns = "http://www.springframework.org/schema/beans"
   xmlns:context = "http://www.springframework.org/schema/context"
   xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation = "
   http://www.springframework.org/schema/beans     
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context-3.0.xsd">

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

   <bean class = "org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>

   <bean name = "/helloWorld.html" 
      class = "com.tutorialspoint.HelloController" />

   <bean name = "/hello*" 
      class = "com.tutorialspoint.HelloController" /> 

   <bean name = "/welcome.html"
      class = "com.tutorialspoint.WelcomeController"/>   
</beans>

hello.jsp

实例


<%@ page contentType = "text/html; charset = UTF-8" %>
<html>
   <head>
      <title>Hello World</title>
   </head>
   <body>
      <h2>${message}</h2>
   </body>
</html>

welcome.jsp

实例


<%@ page contentType = "text/html; charset = UTF-8" %>
<html>
   <head>
      <title>Welcome</title>
   </head>
   <body>
      <h2>${message}</h2>
   </body>
</html>

完成创建源文件和配置文件后,导出您的应用程序。 右键单击您的应用程序,使用 Export → WAR File 选项并将 TestWeb.war 文件保存在 Tomcat 的 webapps 文件夹中。

现在,启动您的 Tomcat 服务器并确保您能够使用标准浏览器从 webapps 文件夹访问其他网页。 尝试以下 URL − http://localhost:8080/TestWeb/helloWorld.htm 如果 Spring Web 应用程序一切正常,我们将看到以下屏幕。

Spring Bean 名称 Url 处理程序映射 1

尝试一个 URL − http://localhost:8080/TestWeb/hello.htm 如果 Spring Web 应用程序一切正常,我们将看到以下屏幕。

Spring Bean 名称 Url 处理程序映射 2

尝试一个 URL http://localhost:8080/TestWeb/welcome.htm,如果 Spring Web 应用程序一切正常,我们将看到以下屏幕。

Spring Bean 名称 Url 处理程序映射 3

尝试一个 URL http://localhost:8080/TestWeb/welcome1.htm,如果 Spring Web 应用程序一切正常,我们将看到以下屏幕。

Spring Bean 名称 Url 处理程序映射 4