Spring-mvc入门案列

web.xml的配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    id="WebApp_ID" version="3.0">
    <!-- 配置spring -->
    <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- 如果applicationContext.xml不在web-info下则要配置 -->
    <context-param>
    <param-name>contextConfigLocation</param-name><!--contextConfigLocation名不能改 -->
    <param-value>classpath:applicationContext.xml</param-value>
    </context-param>
    
    <!-- 配置spring mvc -->
    <servlet>
        <servlet-name>qq</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!-- 如果qq-servlet.xml放在web-info文件夹下则不用配置,contextConfigLocation名不能改 -->
        <init-param>
        <param-name>contextConfigLocation</param-name> 
        <param-value>classpath:springmvc.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>qq</servlet-name>
        <url-pattern>*.do</url-pattern><!-- 是spring mvc开发习惯要.do结尾,struts要用.action -->
    </servlet-mapping>
    <!-- spring mvc处理乱码 -->
    <filter>
    <filter-name>bm</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <!-- 设置编码参数 -->
    <init-param>
    <param-name>encoding</param-name><!--encoding不能变  -->
    <param-value>utf-8</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>bm</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
    <display-name></display-name>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

applicationContext.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:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx" 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/tx
                http://www.springframework.org/schema/tx/spring-tx.xsd
                http://www.springframework.org/schema/aop
                http://www.springframework.org/schema/aop/spring-aop.xsd
                http://www.springframework.org/schema/context
                http://www.springframework.org/schema/context/spring-context.xsd">

    <context:property-placeholder location="classpath:jdbc.properties" />

    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
        <property name="driverClass" value="${jdbc.driver}"></property>
        <property name="jdbcUrl" value="${jdbc.url}"></property>
        <property name="initialPoolSize" value="5"></property>
        <property name="minPoolSize" value="5" />
        <property name="maxPoolSize" value="10" />
        <property name="maxIdleTime" value="600" />
        <property name="maxStatements" value="0" />
    </bean>
    
    <bean id="userDaoImpl" class="com.hw.dao.impl.UserDaoImpl">
        <property name="dataSource">
        <ref bean="dataSource"/>
        </property>
    </bean>


</beans>

springmvc.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:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx" 
       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/tx
                http://www.springframework.org/schema/tx/spring-tx.xsd
                http://www.springframework.org/schema/aop
                http://www.springframework.org/schema/aop/spring-aop.xsd
                http://www.springframework.org/schema/context
                http://www.springframework.org/schema/context/spring-context.xsd
                http://www.springframework.org/schema/mvc
                http://www.springframework.org/schema/mvc/spring-mvc.xsd">

<!--注解映射器  -->
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"></bean>
<!--注解适配器  -->
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"></bean>
<context:component-scan base-package="com.hw"></context:component-scan>
<!--使用mvc:annotation-driven上面的注解映射器和注解适配器将被替代  -->
<mvc:annotation-driven></mvc:annotation-driven>

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

控制层(传接值)

package com.hw.controller;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;

import javax.security.auth.message.callback.PrivateKeyCallback.Request;
import javax.servlet.http.HttpServletRequest;

import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.ServletRequestDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import com.hw.dao.impl.UserDaoImpl;
import com.hw.domain.User;

@Controller
@RequestMapping("view")
public class UserController {

    UserDaoImpl db = new UserDaoImpl();

    @RequestMapping("hello")
    // 如果访问此访问:则路径为:user/hello.do
    public String hello() {
        return "hello";
    }

    @RequestMapping("toadd")
    // 如果访问此访问:则路径为:user/toadd.do
    public String toadd() {
        return "add";
    }

    public String add(Model model, User uu) {
        /*
         ****第1 种方法接值spring mvc , add(String name, float money, Date jobtime):
         * 只要方法的括号中属性我和表单中的的属性名一致则自动取值且类型会自动转换 System.out.println(name + " " + money +
         * " " + jobtime);
         * 
         * 第2 种方法接值spring mvc , add(User uu) 只要方法的括号里写上类属性即可(属性名和表单中的属性名一致)
         * System.out.println(uu.getName() + " " + uu.getMoney() + " " +
         * uu.getJobtime());
         * 
         * 第3 种方法接值spring mvc add(HttpServletRequest request) 只要在括号里写上HttpServletRequest
         * request,然后即可request.getParameter("name")取值
         * 
         * String name=request.getParameter("name"); float
         * money=Float.parseFloat(request.getParameter("money")); String
         * jobtime=request.getParameter("jobtime"); System.out.println(name + " " +money
         * + " " +jobtime);
         * 
         * 
         * spring mvc默认为转发方式,如改为重定向则是为:redirect:list.do
        
         ***传值:第 1种方法使用request.setAttribute转发有效,如果重定向有效则用session.setAttribute
         * HttpSession session = request.getSession();//创建session对象
         
        // request.setAttribute("name", name);
        // request.setAttribute("money", money);
        // return "list"; //转发
        // session.setAttribute("name", name);
        // session.setAttribute("money", money);
        /*
         * 传值 :第1种使用:request对象,对转发有效如重定向则要用session对象 
         *      第2种使用:Model传值时可以用使用,对转发有效,对重定向无效
         * 
         */

        model.addAttribute("name", uu.getName());
        model.addAttribute("money", uu.getMoney());
        model.addAttribute("uu", uu);
        return "list"; // 转发
        // return "redirect:list.do"; //重定向
    }
    @RequestMapping("addview")
    public ModelAndView addview(User uu){
    Map<String,Object> map=new HashMap<String,Object>();    
        map.put("name", uu.getName());
        map.put("money", uu.getMoney());
        map.put("uu", uu);
        return new ModelAndView("list",map);
        //第3种使用:ModelAndView传值时可以用使用,对转发有效,对重定向无效
        //return new ModelAndView("redirect:list.do",map);
        
    }
    @RequestMapping("list")
    // 如果访问此访问:则路径为:user/list.do
    public String list() {
        System.out.println("欢迎来看list页面!!!");
        return "list";
    }

    // spring mvc对时间格式处理,Date要导入java.util包下的
    @InitBinder
    private void InitBinder(ServletRequestDataBinder bind) {
        bind.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"), true));
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,928评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,192评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,468评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,186评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,295评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,374评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,403评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,186评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,610评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,906评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,075评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,755评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,393评论 3 320
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,079评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,313评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,934评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,963评论 2 351

推荐阅读更多精彩内容