SpringMVC的controller学习

Posted nuist__NJUPT

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringMVC的controller学习相关的知识,希望对你有一定的参考价值。

SpringMVC的controller学习

与传统风格的控制器相比,基于注解的控制器有以下优点。
1-可以在控制器类中编写多个请求处理方法,进而可以处理多个请求,减少控制器的数量,方便维护。
2-基于注解的控制器不需要再配置文件中部署,仅需要使用RequestMapping注解一个方法进行请求。

RequestMapping注解类型将请求与处理方法一一对应,可以使用累级别的注解,也可以使用方法级别的注解,推荐使用类级别的注解,可以将相关处理放到同一个控制器类中,方便维护。

在控制器类中接收请求处理方法有很多种。
1-使用实体Bean接收请求参数对象。
2-通过处理方法的形参接收请求参数,也就是直接把表单参数写在控制器类的形参上,要求形参名称与请求参数名称完全相同。
3-通过HttpServltRequest接收请求参数,适用于get和post方式。
4-通过@PathVariable接收URL的请求参数。
5-通过@RequestParam接收请求参数,也是在形参接收请求参数,不过参数名和形参名可以不同。
6-通过@ModelAttribute接收请求参数,该注解放在处理方法的形参上时,将多个请求封装成一个实体对象,并且自动暴露为模型数据,在视图页面展示时使用。

下面方法使用实体Bean接收请求处理方法,模拟用户的注册和登录过程。
1-创建web应用,并导入相关jar包。
2-在web.xml中部署前端控制器DispatcherServlet

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
         http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         id = "WebApp_ID" version="4.0">
    <!--部署DispatcherServlet-->
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>WEB-INF/springmvc-servlet.xml</param-value>
        </init-param>
        <!--表示容器启动时加载的servlet-->
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <!--任意的请求都通过DispatcherServlet-->
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

3-在首页面index.jsp中创建注册和登录链接。

<%--
  Created by IntelliJ IDEA.
  User: nuist__NJUPT
  Date: 2021/9/28
  Time: 14:07
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>注册登录</title>
  </head>
  <body>
  未注册的用户,请<a href = "${pageContext.request.contextPath}/index/register">注册
  </a><br>
  已经注册的用户,请<a href = "${pageContext.request.contextPath}/index/login">登录</a>
  </body>
</html>

4-创建springmvc配置文件,在该文件中控制器类的指定包,同时配置使用的图片资源,配置视图解析器等。

<?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
        https://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!--使用扫描机制,扫描控制器类-->
    <context:component-scan base-package="controller"/>
    <mvc:annotation-driven />
    <!--annotation-driven用于简化开发的配置,注解DefaultAnnotationHandlerMapping和AnnotationMethodHandlerAdapter-->
    <!--使用resources过滤掉不需要dispatcherservlet的资源,例如静态资源,在使用resources时必须使用annotation-driven,否则resources会阻止任意控制器被调用-->

    <mvc:resources location="/image/" mapping="/image/**"></mvc:resources>

    <!--配置视图解析器-->
    <bean class = "org.springframework.web.servlet.view.InternalResourceViewResolver" id = "internalResourceViewResolver">
        <!--前缀-->
        <property name = "prefix" value = "/WEB-INF/jsp/"/>
        <!--后缀-->
        <property name = "suffix" value = ".jsp"/>
    </bean>
</beans>



5-创建pojo包,在该包中创建userForm类,用于传递参数对象。

public class UserForm {
    public String uname, upass, reupass ;

    public String getUname() {
        return uname;
    }

    public void setUname(String uname) {
        this.uname = uname;
    }

    public String getUpass() {
        return upass;
    }

    public void setUpass(String upass) {
        this.upass = upass;
    }

    public String getReupass() {
        return reupass;
    }

    public void setReupass(String reupass) {
        this.reupass = reupass;
    }
}

6-创建两个控制器类,分别用于处理注册登录的链接请求和注册登录后的请求。

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

@Controller
@RequestMapping("/index")
public class IndexController {
    @RequestMapping("/login")
    public String login(){
        return "login" ;
    }
    @RequestMapping("/register")
    public String register(){
        return "register" ;
    }
}

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

import javax.servlet.http.HttpSession;

@Controller
@RequestMapping("/user")
public class UserController {
    @RequestMapping("/login")
    public String login(UserForm userForm, HttpSession session, Model model){
        if("wangguodong".equals(userForm.getUname()) && "123".equals(userForm.getUpass())){ //用户名和密码都相等
            session.setAttribute("u", userForm);
            return "main" ; //登录成功,跳到主页面
        }else{
            model.addAttribute("messageError", "用户名或密码错误") ;
            return "login" ;
        }
    }

    @RequestMapping("/register")
    public String register(UserForm userForm, Model model){
        if("wangguoodng".equals(userForm.getUname()) && "123".equals(userForm.getUpass()) && "123".equals(userForm.getReupass())){
            return "login" ;//注册成功,进入登录页面
        }else{ //注册失败,返回注册页面
            model.addAttribute("uname", userForm.getUname()) ;
            return "register" ;
        }
    }
}

7-在WEB-INF目录下创建相应的jsp,在包中创建注册,登录,以及主视图界面

<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>
<!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>Insert title here</title>
</head>
<body>
<form action = "${pageContext.request.contextPath}/user/register" method = "post" name = "registerForm" >
    <table border=1 bgcolor="#00bfff" align = "center">
        <tr>
            <td>用户名:</td>
            <td>
                <input class = "textSize" type = "text" name = "uname" value = "${uname}"/>
            </td>
        </tr>
        <tr>
            <td>密码:</td>
            <td>
                <input class = "textSize" type = "password" maxLength = "20" name = "upass"/>
            </td>
        </tr>
        <tr>
            <td>确认密码:</td>
            <td>
                <input class = "textSize" type = "password" maxLength = "20" name = "reupass"/>
            </td>
        </tr>
        <tr>
            <td colspan="2" align="center">
                <input type = "submit" value = "注册" />
            </td>
        </tr>
    </table>
    <table align = "center">
        <tr>
            <td colspan = "5" > ${messageError} </td>
        </tr>
    </table>

</form>
</body>
</html>


<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>
<!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>Insert title here</title>
</head>
<body>
<form action = "${pageContext.request.contextPath}/user/login" method = "post" accept-charset="UTF-8">
    <table >
        <tr>
            <td colspan = "2"> <img src="${pageContext.request.contextPath}/image/login.png"></td>
        </tr>
        <tr>
            <td>用户名:</td>
            <td><input type = "text" name = "uname" class = "textSize"></td>
        </tr>
        <tr>
            <td>密码:</td>
            <td><input type = "password" name = "upass" class = "textSize"/></td>
        </tr>
        <tr>
            <td colspan = "2">
                <input type = "submit"  value = "提交">
                <input type = "submit"  value = "取消">
            </td>
        </tr>
    </table>
    ${messageError}
</form>
</body>
</html>

<%--
  Created by IntelliJ IDEA.
  User: nuist__NJUPT
  Date: 2021/9/28
  Time: 17:29
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
主页面
</body>
</html>

工作过程:首先客户端将请求提交给前端控制器DispatcherServlet,前端控制通过注解RequestMapping找到对应的controller,调用参数处理完成后,返回ModelAndView,通过视图解析器解析后,视图返回给客户端。

以上是关于SpringMVC的controller学习的主要内容,如果未能解决你的问题,请参考以下文章

SpringMVC的controller学习

学习SpringMVC之mvc:view-controller标签

SpringMVC框架学习笔记——controller配置汇总

springMVC学习笔记之Controller控制器

SpringMVC学习笔记3:Controller和RestFul

springMVC学习总结 --springMVC重定向