SpringMVC基本

SpringMVC和Struts2的區別html

SpringMVC與Struts2區別java

對比項目web

SrpingMVCspring

Struts2安全

優點服務器

國內市場狀況微信

有大量用戶,通常新項目啓動都會選用springmvc架構

有部分老用戶,老項目組,因爲習慣了,一直在使用。併發

國內狀況,springmvc的使用率已經超過Struts2mvc

框架入口

基於servlet

基於filter

本質上沒太大優點之分,只是配置方式不同

框架設計思想

控制器基於方法級別的攔截,處理器設計爲單實例

控制器基於類級別的攔截, 處理器設計爲多實例

因爲設計自己緣由,形成了Struts2,一般來說只能設計爲多實例模式,相比於springmvc設計爲單實例模式,Struts2會消耗更多的服務器內存。

參數傳遞

參數經過方法入參傳遞

參數經過類的成員變量傳遞

Struts2經過成員變量傳遞參數,致使了參數線程不安全,有可能引起併發的問題。

與spring整合

與spring同一家公司,能夠與spring無縫整合

須要整合包

Springmvc能夠更輕鬆與spring整合

SpringMVC有三大組件:處理器映射器、處理器適配器、視圖解析器

SpringMVC的架構

demo代碼結構以下

productList.jsp

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>商品列表</title>
</head>
<body>
<h1>商品列表</h1>
<table width="100%" border="1">
    <tr>
        <td>商品名稱</td>
        <td>商品價格</td>
        <td>生產日期</td>
        <td>商品描述</td>
        <td>操做</td>
    </tr>
    <c:forEach items="${productList}" var="product">
        <tr>
            <td>${product.name}</td>
            <td>${product.price}</td>
            <td><fmt:formatDate value="${product.createTime}" pattern="yyyy-MM-da HH:mm:ss"/></td>
            <td>${product.detail}</td>
            <td><a href="${pageContext.request.contextPath}/productEdit.form?id=${product.id}">修改</a></td>
        </tr>
    </c:forEach>
</table>
</body>
</html>

dispatcher-servlet.xml

<?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" 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">
    <!--配置controller掃描包-->
    <context:component-scan base-package="com.jinke.springmvc"/>
    <!--視圖解析器的配置-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
</beans>

web.xml

<?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" version="4.0">
    <!--加載核心配置文件-->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!--核心控制器的配置-->
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>*.form</url-pattern>
    </servlet-mapping>
</web-app>

java類

import java.util.Date; public class Product { private int id; private String name; private double price; private Date createTime; private String detail; public Product() { } public Product(int id, String name, double price, Date createTime, String detail) { this.id = id; this.name = name; this.price = price; this.createTime = createTime; this.detail = detail; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getDetail() { return detail; } public void setDetail(String detail) { this.detail = detail; } }
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; import java.util.Arrays; import java.util.Date; import java.util.List; @Controller public class ProductControll { @RequestMapping("productList") public ModelAndView productList() { ModelAndView mav = new ModelAndView(); List<Product> products = Arrays.asList(new Product(1, "1", 1111, new Date(), "1111") , new Product(2, "2", 2222, new Date(), "2222") , new Product(3, "3", 3333, new Date(), "3333") , new Product(4, "4", 4444, new Date(), "4444")); mav.addObject("productList", products); mav.setViewName("productList"); return mav; } }

結果

歡迎關注個人微信公衆號:安卓圈

相關文章
相關標籤/搜索