一、Controller配置总结

实现Controller接口

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
  5. version="4.0">
  6. <!--1.注册DispatcherServlet-->
  7. <servlet>
  8. <servlet-name>springmvc</servlet-name>
  9. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  10. <!--关联一个springmvc的配置文件:【servlet-name】-servlet.xml-->
  11. <init-param>
  12. <param-name>contextConfigLocation</param-name>
  13. <param-value>classpath:springmvc-servlet.xml</param-value>
  14. </init-param>
  15. <!--启动级别-1-->
  16. <load-on-startup>1</load-on-startup>
  17. </servlet>
  18. <!--/ 匹配所有的请求;(不包括.jsp)-->
  19. <!--/* 匹配所有的请求;(包括.jsp)-->
  20. <servlet-mapping>
  21. <servlet-name>springmvc</servlet-name>
  22. <url-pattern>/</url-pattern>
  23. </servlet-mapping>
  24. </web-app>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       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.xsd">

    <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
    <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/>
    <!--视图解析器:DispatcherServlet给他的ModelAndView-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="InternalResourceViewResolver">
        <!--前缀-->
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <!--后缀-->
        <property name="suffix" value=".jsp"/>
    </bean>
    <!-- 实现Controller接口的类放在SpringIoC容器中注册 -->
    <bean name="/hello" class="com.comprehensive.controller.HelloController"/>

</beans>
public class HelloController implements Controller {
    public ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
        //ModelAndView 模型和视图
        ModelAndView mv = new ModelAndView();

        //封装对象,放在ModelAndView中。Model
        mv.addObject("msg","HelloSpringMVC!");
        //封装要跳转的视图,放在ModelAndView中
        mv.setViewName("hello"); //: /WEB-INF/jsp/hello.jsp
        return mv;
    }
}

说明:

  • 实现接口Controller定义控制器是较老的办法
  • 缺点是:一个控制器中只有一个方法,如果要多个方法则需要定义多个Controller;定义的方式比较麻烦

    注解实现Controller

  • @Controller注解类型用于声明Spring类的实例是一个控制器

  • Spring可以使用扫描机制来找到应用程序中所有基于注解的控制器类,为了保证Spring能找到你的控制器,需要在配置文件中声明组件扫描

    <!-- 自动扫描包,让指定包下的注解生效,由IOC容器统一管理 -->
    <context:component-scan base-package="com.comprehensive.controller"/>
    
    @Controller
    @RequestMapping("/first_experience")
    public class HelloController {
    
      //真实访问地址: /first_experience/hello.jsp
      @RequestMapping("/hello")
      public String hello(Model model) {
          //向模型中添加属性msg与值,可以在JSP页面中取出并渲染
          model.addAttribute("msg","hello,SpringMVC");
          //web-inf/jsp/hello.jsp
          return "hello";
      }
    }
    

    二、RequestMapping说明

    @RequestMapping注解用于映射url到控制器类或一个特定的处理程序方法。可用于类或方法上:用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径;用于方法上,表示以该地址响应请求该方法

    只用于方法上

    访问地址: http://localhost:8080/hello

    @Controller
    public class HelloController {
      @RequestMapping("/hello")
      public String hello(Model model) {
          model.addAttribute("msg","hello,SpringMVC");
          return "hello";
      }
    }
    

    同时用于类和方法上

    访问地址: http://localhost:8080/first_experience/hello

    @Controller
    @RequestMapping("/first_experience")
    public class HelloController {
      @RequestMapping("/hello")
      public String hello(Model model) {
          model.addAttribute("msg","hello,SpringMVC");
          return "hello";
      }
    }
    

    三、Restful风格

    概念

    Restful就是一个资源定位及资源操作的风格。不是标准也不是协议,只是一种风格。基于这个风格设计的软件可以更简洁,更有层次,更易于实现缓存等机制

    功能

  • 资源:互联网所有的事物都可以被抽象为资源

  • 资源操作:使用POST、DELETE、PUT、GET,使用不同方法对资源进行操作。
  • 分别对应 添加、 删除、修改、查询

    未使用Restful风格

    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
      <title>页面</title>
    </head>
    <body>
      ${msg}
    </body>
    </html>
    
    @Controller
    public class Controller_Restful {
      @RequestMapping("/test_Restful")
      public String test_Restful(int a, int b, Model model) {
          model.addAttribute("msg", "结果为:" + (a+b));
          return "test";
      }
    }
    

    image.png
    image.png

    测试Restful风格

    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
      <title>页面</title>
    </head>
    <body>
      ${msg}
    </body>
    </html>
    
    @Controller
    public class Controller_Restful {
      @RequestMapping("/test_Restful/{a}/{b}")
      public String test_Restful(@PathVariable int a, @PathVariable int b, Model model) {
          model.addAttribute("msg", "结果为:" + (a+b));
          return "test";
      }
    }
    

    image.png
    image.png

    更改参数类型,再次测试

    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
      <title>页面</title>
    </head>
    <body>
      ${msg}
    </body>
    </html>
    
    @Controller
    public class Controller_Restful {
      @RequestMapping("/test_Restful/{a}/{b}")
      public String test_Restful(@PathVariable int a, @PathVariable String b, Model model) {
          model.addAttribute("msg", "结果为:" + (a+b));
          return "test";
      }
    }
    

    image.png
    image.png

    约束请求的类型

    @RequestMapping中的参数method

    @Controller
    public class Controller_Restful {
      @RequestMapping(value = "/test_Restful/{a}/{b}", method = RequestMethod.GET)
      public String test_Restful(@PathVariable int a, @PathVariable String b, Model model) {
          model.addAttribute("msg", "结果为:" + (a+b));
          return "test";
      }
    }
    

    image.png
    image.png

    组合注解

    Spring MVC 的 @RequestMapping 注解能够处理 HTTP 请求的方法, 比如 GET, PUT, POST, DELETE 以及 PATCH。
    所有的地址栏请求默认都会是 HTTP GET 类型的。
    方法级别的注解变体有如下几个:组合注解

  • @GetMapping

  • @PostMapping
  • @PutMapping
  • @DeleteMapping
  • @PatchMapping

@GetMapping 是一个组合注解,平时使用的会比较多!
它所扮演的是 @RequestMapping(method =RequestMethod.GET) 的一个快捷方式

@Controller
public class Controller_Restful {
    @GetMapping("/test_Restful2/{a}/{b}")
    public String test_Restful2(@PathVariable int a, @PathVariable String b, Model model) {
        model.addAttribute("msg", "结果为:" + (a+b));
        return "test";
    }
}

image.png
image.png