1. 程式人生 > >Java- SpringMVC篇:註解式開發@controller--洪族99

Java- SpringMVC篇:註解式開發@controller--洪族99

SpringMVC是一個比struts2更快捷的MVC框架,它的特點就是註解式開發,方便快捷,但是執行速度稍微比struts2慢一點。

 

首先,匯入SpringMVC的依賴。

 

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>4.3.10.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>4.0.1</version>
            <scope>provided</scope>
        </dependency>

spring-webmvc:SpringMVC的核心依賴。

servlet:在傳遞資料時會用到。

 

接下來,是web.xml:

<!DOCTYPE web-app PUBLIC
        "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
    <display-name>Archetype Created Web Application</display-name>

   
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc.xml</param-value>
        </init-param>
    </servlet>

    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>*.action</url-pattern>
    </servlet-mapping>


</web-app>

 SpringMVC的入口是一個servlet,所以後綴為.action的請求都將被分配到各個controller內,由控制器裡的方法處理。

SpringMVC需要一個配置檔案:springmvc.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<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.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">


    <context:component-scan base-package="com.hc.controller"></context:component-scan>

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

  xmlns:context :需要手動copy配置。

context:component-scan:註解掃描器,base-package是控制器所在的包。

InternalResourceViewResolver:檢視解析,解析controller所返回的值,將值變為一個jsp的名字(路徑)。例如:controller的返回值是First,經過解析後變為/First.jsp,並且進入First.jsp。

prefix:字首

suffix:字尾

 

最後,在java檔案目錄中建controller包,FirstController.java

package com.hc.controller;

import com.hc.entity.Student;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.SessionAttributes;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServletRequest;
import java.util.Map;

@SessionAttributes("uid")

@Controller
public class FirstController {

    @RequestMapping("**/first")
//    @RequestMapping(value = "/first",method = RequestMethod.GET)
    public String first(@RequestParam("uid") int uid, Map map){
        map.put("uid",uid);
        return "insert";
    }

//"redirect:success.jsp"

    @RequestMapping("/value")
    public String value(Student student,HttpServletRequest request){
        request.setAttribute("student",student);
        return "success";
    }

    @RequestMapping("/student")
    public ModelAndView student(Student student){
        ModelAndView modelAndView=new ModelAndView();
        modelAndView.addObject("student",student);
        modelAndView.setViewName("success");
        return modelAndView;
    }


}

 

controller相當於struts2中的action。

@Controller:在class上,必須加上Controller註解,宣告這個class是一個Controller

@RequestMapping("/first"):這個first就是所請求的first.action

@RequestMapping("/?/first"):匹配first.action前的一級目錄,即允許first.action前有一級目錄,且目錄只能是一個,如:a、b等。

@RequestMapping("/*/first"):匹配一級目錄,但是目錄可以是多個字元

@RequestMapping("**/first"):允許多級目錄

 

@RequestMapping(value = "/first",method = RequestMethod.GET):指定這個方法只能被以GET方式提交的first.action所呼叫。

 

 public String value(Student student){

}

Student 是物件,可自動收集,並且,頁面輸入框的name只需要是物件的屬性名即可。不需要像struts2那樣,物件名.屬性名

 

@RequestParam("uid"):獲取所提交的資料,可以不宣告。

return "redirect:success.jsp":代表重定向,不轉發資料

 

@SessionAttributes("uid"):這是session,儲存名為uid的值。但是,

map.put("uid",uid)  uid是被Map所存放。

 

傳遞資料的第一種方式:

public String first(@RequestParam("uid") int uid, Map map){

}
 

在傳入參的位置,定義Map,並且map.put("uid",uid),頁面即可用EL表示式接收並展示。注意:EL表示式必須標明:

isELIgnored="false"

 

傳遞資料的第二種方式:

public String value(Student student,HttpServletRequest request){

}

定義request,通過作用域傳值。

 request.setAttribute("student",student)即可。

也可以,

 session.setAttribute("student",student)

 

傳遞資料的第三種方式:

public ModelAndView student(Student student){

}

模型檢視

modelAndView.addObject("student",student):儲存引數。
modelAndView.setViewName("success"):儲存應該返回的返回值,即頁面jsp的名字。

 

接下來,測試:

在web.xml配置:

    <welcome-file-list>
        <welcome-file>/first.jsp</welcome-file>
    </welcome-file-list

專案啟動後,就會進入這個first.jsp

<%--
  Created by IntelliJ IDEA.
  User: admin
  Date: 2018/11/2
  Time: 17:19
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" isELIgnored="false" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<a href="/first.action?uid=115">來了,大人</a>
<a href="/students.action">students</a>



</body>
</html>

測試SpringMVC

<%--
  Created by IntelliJ IDEA.
  User: admin
  Date: 2018/11/2
  Time: 19:57
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" isELIgnored="false" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
    <title>Title</title>
</head>
<body>

<a href="/students.action">students</a>
<a href="/insert.jsp">insert</a>


    <form action="/likeStudent.action" method="post">

        <input type="text" name="likeStr">
        <input type="submit" value="搜尋">
    </form>


${student.stuId}<br>
${student.stuName}
花樣


</body>
</html>

SpringMVC開發效率高,被大量使用!