Springmvc

处理流程

所需的包

前端配置器

在web.xml中配置

<!-- 配置前端控制器 -->

  <servlet>

   <servlet-name>springmvc</servlet-name>

   <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

   <!-- 默认找 /WEB-INF/[servlet名称]-servlet.xml -->

   <init-param>

   <param-name>contextConfigLocation</param-name>

   <param-value>classpath:springmvc.xml</param-value>

   </init-param>

  </servlet>

  <servlet-mapping>

   <servlet-name>springmvc</servlet-name>

   <!--

  1. /* 拦截所有jsp、js、png、css 全拦截,并不建议使用

  2. *.action *.do 拦截指定后缀的请求

  3. / 拦截所有(不包括jsp) (包含js、css、png) 强烈使建议使用

    -->

   <url-pattern></url-pattern>

  </servlet-mapping>

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:p="http://www.springframework.org/schema/p"

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-4.0.xsd

        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

<!-- 扫描@Controller @Service -->

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

   </beans>

HelloController.java

@Controller

public class HelloController {

@RequestMapping(value="hello")

public ModelAndView hello() {

String hello = "hello,SpringMVC";

ModelAndView modelAndView = new ModelAndView();

//添加数据

modelAndView.addObject("mes", hello);

//转发页面

modelAndView.setViewName("hello.jsp");

return modelAndView;

}

}

测试页面

<%@ 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>hello</title>

</head>

<body>

${mes }

</body>

</html>

Springmvc默认加载组建

配置优化   修改springmvc.xml

<!-- 处理器映射器 -->  

<!-- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"></bean> -->

   <!-- 处理器适配器 -->

   <!-- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"></bean> -->

    <mvc:annotation-driven/>

    <!-- 视图解析器 -->

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">

<!-- 前缀 -->

    <property name="prefix" value="/WEB-INF/jsp/"></property>

<!-- 后缀 -->

    <property name="suffix" value=".jsp"></property>

    </bean>

测试方法

@RequestMapping(value="hello")

public ModelAndView hello() {

List<Items> list = new ArrayList<Items>();

String hello = "hello,SpringMVC";

ModelAndView modelAndView = new ModelAndView();

//添加数据

modelAndView.addObject("mes", hello);

//此处去掉了前后缀

modelAndView.setViewName("hello");

return modelAndView;

}

默认参数绑定

通过servlet相关进行绑定,获取请求之类参数

测试url:

http://localhost/springmvc20180614/toEdit?id=1

方法:

@RequestMapping(value="toEdit")

public ModelAndView toEdit(HttpServletRequest request , HttpServletResponse response) {

String id = request.getParameter("id");

System.out.println(id);

return null;

}

输出结果 : 1


基本类型绑定(8大基本数据类型)

将请求参数作为方法形参

测试url:

http://localhost/springmvc20180614/toEdit?id=1

@RequestMapping(value="/toEdit")

public ModelAndView toEdit(Integer id,HttpServletRequest request , HttpServletResponse response) {

System.out.println(id);

return null;

}

  


Pojo绑定

测试url:

http://localhost/springmvc20180614/toEdit?id=1

@RequestMapping(value="toEdit")

public ModelAndView toEdit(Items items) {

System.out.println(items.getId());

return null;

}

注意事项:请求参数必须和类里的属性名字对应

类必须有无参构造函数。


Post提交乱码问题

在web.xml中添加一个过滤器

 <!-- 解决Post提交乱码问题 -->

  <filter>

   <filter-name>encoding</filter-name>

<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>

  <init-param>

  <param-name>encoding</param-name>

  <param-value>utf-8</param-value>

  </init-param>

  </filter>

  <filter-mapping>

   <filter-name>encoding</filter-name>

   <url-pattern>/*</url-pattern>

  </filter-mapping>

自定义参数绑定

测试url:

http://localhost/springmvc20180614/dateConveter?date=2018:06-15 15_48:49

日期转换类DateConveter

import java.text.DateFormat;

import java.text.SimpleDateFormat;

import java.util.Date;

import org.springframework.core.convert.converter.Converter;

public class DateConveter implements Converter<String, Date>{

public Date convert(String source) {

try {

if(null!=source) {

DateFormat df = new SimpleDateFormat("yyyy:MM-dd HH_mm:ss");

return df.parse(source);

}

} catch (Exception e) {

e.printStackTrace();

}

return null;

}

}

springmvc.xml配置

<mvc:annotation-driven conversion-service="conversionServiceFactoryBean"/>

    <!-- 配置转换器 -->

    <bean id="conversionServiceFactoryBean" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">

    <property name="converters">

    <list>

    <bean class="com.conversion.DateConveter"></bean>

    </list>

    </property>

    </bean>

测试方法

@RequestMapping(value="dateConveter")

public ModelAndView toEdit(Date date) {

System.out.println(date);

return null;

}

输出结果

Fri Jun 15 15:48:49 CST 2018


springmvc 笔记一的更多相关文章

  1. SpringMVC笔记——SSM框架搭建简单实例

    落叶枫桥 博客园 首页 新随笔 联系 订阅 管理 SpringMVC笔记——SSM框架搭建简单实例 简介 Spring+SpringMVC+MyBatis框架(SSM)是比较热门的中小型企业级项目开发 ...

  2. SpringMvc 笔记

    整理出来是 SpringMvc 笔记 方便以后查询 框架太多了 不经常使用 忘记的可能性很大 自己整理一套笔记 一看就明白了 1 对比 原始请求响应流程 1 发送请求 --> 2 控制层 --& ...

  3. 初学者的springmvc笔记02

    springmvc笔记 springmvc拦截器,spring类型转换,spring实现文件上传/下载 1.SpringMVC标准配置 导入jar包:core contaner 在web.xml文件中 ...

  4. SpringMVC笔记

    Struts1是采用单例模式的,在并发访问中出来资源混乱,于是出现Struts2被设计为多例的解决并发产生的 数据混乱由于Struts2引入了值栈,拦截器,OGNL等,,,是访问速度下降在原生的JSP ...

  5. 框架SpringMVC笔记系列 二 传值

    主题:SpringMVC(第一节中再回顾复习一次) 学习资料参考网址: 1.http://www.icoolxue.com 2.http://haohaoxuexi.iteye.com/blog/13 ...

  6. 框架SpringMVC笔记系列 一 基础

    主题:SpringMVC 学习资料参考网址: 1.http://www.icoolxue.com 2.http://aokunsang.iteye.com/blog/1279322 1.SpringM ...

  7. 传智springMVC笔记

    springmvc 第一天 springmvc的基础知识 课程安排: 第一天:springmvc的基础知识 什么是springmvc? springmvc框架原理(掌握) 前端控制器.处理器映射器.处 ...

  8. springmvc笔记(来自慕课网)

    1.准备工作:springmvc相关的jar包. 2.这里我们先用eclipse来操作. 首先看一个接口编程,后面的所有知识点都是通过这个接口编程引出的. OneInterface.java pack ...

  9. springmvc笔记(基本配置,核心文件,路径,参数,文件上传,json整合)

    首先导入jar包 大家注意一下我的springmvc,jackson,common-up的jar包版本.其他版本有可能出现不兼容. src文件: webroot目录: web.xml <?xml ...

  10. SpringMvc笔记-对RESTFUL风格的配置

    1.@RequestMapping注解可以使用如下参数: 1,params:例如params={'username',"age!=100"}表示需要usernmame并且age 属 ...

随机推荐

  1. Web开发者应知的URL编码知识

    原文出处:http://blog.jobbole.com/42246/ 本文首先阐述了人们关于统一资源定位符(URL)编码的普遍的误读,其后通过阐明HTTP场景下的URL encoding 来引出我们 ...

  2. Apache运维中常用功能配置笔记梳理

    Apache 是一款使用量排名第一的 web 服务器,LAMP 中的 A 指的就是它.由于其开源.稳定.安全等特性而被广泛使用.下边记录了使用 Apache 以来经常用到的功能,做此梳理,作为日常运维 ...

  3. 程序员必知的8大排序(四)-------归并排序,基数排序(java实现)

    程序员必知的8大排序(一)-------直接插入排序,希尔排序(java实现) 程序员必知的8大排序(二)-------简单选择排序,堆排序(java实现) 程序员必知的8大排序(三)-------冒 ...

  4. JVM学习记录-线程安全与锁优化(一)

    前言 线程:程序流执行的最小单元.线程是比进程更轻量级的调度执行单位,线程的引入,可以把一个进程的资源分配和执行调度分开,各个线程既可以共享进程资源(内存地址.文件I/O等),又可以独立调度(线程是C ...

  5. 并发编程——ConcurrentHashMap#transfer() 扩容逐行分析

    前言 ConcurrentHashMap 是并发中的重中之重,也是最常用的数据结果,之前的文章中,我们介绍了 putVal 方法.并发编程之 ConcurrentHashMap(JDK 1.8) pu ...

  6. webpack3新特性简介

    6月20号webpack推出了3.0版本,官方也发布了公告.根据公告介绍,webpack团队将未来版本的改动聚焦在社区提出的功能需求,同时将保持一个快速.稳定的发布节奏.本文主要依据公告内容,简单介绍 ...

  7. jQuery选择器遇上一些特殊字符

    学习jQuery过程中,发现一些特殊字符,如“.”,“#”,"(","]"等.它在选择器应用时,按照普通处理就会出错.解决办法,就是使用转义字符来处理,这有点象 ...

  8. 如何查看是否安装.NET Framework、.NET Framework的版本号以及CLR版本号

    查看是否安装.NET Framework→%SystemRoot%\System32→如果有mscoree.dll文件,表明.NET Framework已安装 查看安装了哪些版本的.NET Framw ...

  9. RocketMQ 消息发送

    消息发送基本流程: 1.消息验证 验证主题(topic),消息体不能为空和大小不能超过4M. 2.路由查找 a.查看缓存,是否有topic的路由信息. b.如果没有则到NameServer中获取路由信 ...

  10. ubuntu 17.10 安装后的应用软件安装

    目录 安装 sogou 拼音 安装markdown编辑器 安装codeblocks 下载工具uGet+aira2 安装QT 安装remarkable(markdown工具) 安装StarUML(UML ...