Spring MVC小结
Spring MVC项目搭建
添加依赖
(省略)
Spring MVC配置类
@Configuration
@EnableWebMvc
@ComponentScan("com.sjx.springmvc")
public class MyMvcConfig extends WebMvcConfigurerAdapter{
@Bean
public InternalResourceViewResolver viewResolver(){
InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
viewResolver.setPrefix("/WEB-INF/classes/views/");
viewResolver.setSuffix(".jsp");
viewResolver.setViewClass(JstlView.class);
return viewResolver;
}
}
Web配置,实现WebApplicationInitializer接口代替web.xml文件
public class WebInitializer implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.register(MyMvcConfig.class);
ctx.setServletContext(servletContext);
Dynamic servlet = servletContext.addServlet("dispatcher", new DispatcherServlet(ctx));
servlet.addMapping("/");
servlet.setLoadOnStartup(1);
}
}
Spring MVC的常用注解
@controller
@controller注解在类上,表明这个类为Spring MVC的Controller,并讲Web请求映射到注解了@RequestMapping的方法上@RequestMapping
@RequestMapping是用来映射Web请求的的方法,可以注解在类上,方法上的@RequestMapping路径会继承类上的路基,并且produces属性可以设置请求的媒体类型@ResponseBody
@ResponseBody可以注解类上也可注解在方法上,支持把返回值放入response体内,而不是返回一个页面@RequestBody
@RequestBody注解在参数前,允许请求的参数在request体中,而不是直接放在链接地址的后面@PathVariable
@PathVariable用来接受路劲参数,次注解用在参数前面,如pathvar/{str},可接受参数str@RestController
@RestController是一个组合注解,是@Controller和@ResponseBody的组合
@Controller
@RequestMapping("/anno")
public class DemoAnnoController {
@RequestMapping(produces = "text/plain;charset=UTF-8")
public @ResponseBody String index(HttpServletRequest request) {
return "url" + request.getRequestURI() + "can access";
}
// http://localhost:8080/springmvc1/anno/pathvar/sjx@RequestMapping(value = "pathvar/{str}", produces = "text/plain;charset=UTF-8")
public @ResponseBody String demoPathVar(@PathVariable String str, HttpServletRequest request) {
return "url" + request.getRequestURI() + " can access str:" + str;
}
// http://localhost:8080/springmvc1/anno/requestParam?id=25@RequestMapping(value = "/requestParam", produces = "text/plain;charset=UTF-8")
public @ResponseBody String passRequestParam(Long id, HttpServletRequest request) {
return "url" + request.getRequestURI() + " can access id:" + id;
}
@RequestMapping(value = "/obj", produces = "application/json;charset=UTF-8")
@ResponseBodypublic String passObj(DemoObj obj, HttpServletRequest request) {
return "url" + request.getRequestURI() + " can access, obj id:" + obj.getId() + " obj name:" + obj.getName();
}
@RequestMapping(value = { "/name1", "/name2" }, produces = "text/plain;charset=UTF-8")
public @ResponseBody String remove(HttpServletRequest request) {
return "url: " + request.getRequestURL() + " can access";
}
}
Spring MVC的基本配置
拦截器配置
- 拦截器类
- 继承HandlerInterceptorAdapter实现自定义拦截器
- 重写preHandle方法,请求发生时执行
- 重写postHandle方法,请求结束是执行
public class DemoInterceptor extends HandlerInterceptorAdapter {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
long startTime = System.currentTimeMillis();
request.setAttribute("startTime", startTime);
return true;
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
Long startTime = (Long) request.getAttribute("startTime");
Long currentTime = System.currentTimeMillis();
long handlerTime = currentTime - startTime;
System.out.println("一次请求的时间为" + handlerTime + "ms");
request.setAttribute("handlerTime", handlerTime);
}
}
- 配置
- 配置拦截器的Bean
- 重写addInterceptors(InterceptorRegistry registry)方法,添加拦截器
@Configuration
@EnableWebMvc
@ComponentScan("com.sjx.springmvc")
public class MyMvcConfig extends WebMvcConfigurerAdapter{
@Bean
public InternalResourceViewResolver viewResolver(){
InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
viewResolver.setPrefix("/WEB-INF/classes/views/");
viewResolver.setSuffix(".jsp");
viewResolver.setViewClass(JstlView.class);
return viewResolver;
}
//自定义拦截器
@Bean
public DemoInterceptor handlerTimeInterceptor(){
return new DemoInterceptor();
}
//添加拦截器
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(handlerTimeInterceptor());
}
}
@ControllerAdvice
使用@ControllerAdvice注解可以将对于控制器的全局配置放在一起
- @ExceptionHandler 用于处理全局处理器中的异常
- @ModelAttribute 本来是用于将键值对绑定到Model里,这里用于让全局的@RequestMapping都能接收到此键值对
//声明一个全局通知 此注解包含了
@Component
@ControllerAdvice
public class ExceptionHandlerAdvice {
//拦截所有的异常 显示error界面@ExceptionHandler(value = Exception.class)
public ModelAndView exception(Exception exception, WebRequest request) {
ModelAndView view = new ModelAndView("error");// error界面
view.addObject("errorMessage", exception.getMessage());
return view;
}
//所有用@RequestMapping注解的方法 都能获取这个键值对
@ModelAttribute
public void addAttribute(Model mode) {
mode.addAttribue("msg", "额外信息");
}
}
文件上传配置
- 添加依赖
<!-- 文件上传 -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2</version>
</dependency>
<!-- 简化文件操作 -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
- 上传页面
<%@ 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>文件上传</title>
</head>
<body>
<div class="upload">
<form action="upload" method="post" enctype="multipart/form-data">
<input type="file" name="file"><br><input type="submit" value="上传文件">
</form>
</div>
</body>
</html>
- 添加upLoad的ViewController
//集中处理跳转页面
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/toUpload").setViewName("/upload");
}
- 配置MultipartResolver
//配置MultipartResolver,用MultipartFile 接受文件上传
@Bean
public MultipartResolver multipartResolver(){
CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver();
multipartResolver.setMaxUploadSize(1000000);
return multipartResolver;
}
- 控制器
@Controller
public class UploadController {
@RequestMapping(value = "upload", method = RequestMethod.POST)
public @ResponseBody String upload(MultipartFile file) {
try {
// 使用 commons-io包实现快读文件写入磁盘
FileUtils.writeByteArrayToFile(new File("e:/upload/" + file.getOriginalFilename()), file.getBytes());
return "success";
} catch (IOException e) {
e.printStackTrace();
return "fail";
}
}
}
Spring MVC小结的更多相关文章
- Spring MVC小结1
由于最近刚开始学Spring MVC,所以来讲一下自己的理解. 首先进行环境配置: 1.jdk 2.myeclipse 3.tomcat 4.maven 配置maven的时候出现了一个小的问题,JAV ...
- Spring学习(十一)--Spring MVC
1.MVC模式 (1)视图 通过视图展示应用数据 向应用数据提供更新动作 向控制器提交用户动作 运行控制器选择不同视图 (2)模型提供 封装应用数据状态 响应数据状态查询 提供应用功 ...
- Spring mvc中@RequestMapping 6个基本用法小结(转载)
小结下spring mvc中的@RequestMapping的用法. 1)最基本的,方法级别上应用,例如: @RequestMapping(value="/departments" ...
- spring mvc中的拦截器小结 .
在spring mvc中,拦截器其实比较简单了,下面简单小结并demo下. preHandle:预处理回调方法,实现处理器的预处理(如登录检查),第三个参数为响应的处理器(如我们上一章的Control ...
- Spring mvc中@RequestMapping 6个基本用法小结
Spring mvc中@RequestMapping 6个基本用法小结 小结下spring mvc中的@RequestMapping的用法. 1)最基本的,方法级别上应用,例如: @RequestMa ...
- 转:Spring mvc中@RequestMapping 6个基本用法小结
Spring mvc中@RequestMapping 6个基本用法小结 发表于3年前(2013-02-17 19:58) 阅读(11698) | 评论(1) 13人收藏此文章, 我要收藏 赞3 4 ...
- Spring MVC 原理小结
主要由DispatcherServlet.处理器映射.处理器.视图解析器.视图组成 1.DispatcherServlet接收到一个HTTP请求,根据对应配置文件中的处理机映射,找到处理器(Han ...
- Spring mvc 模式小结
http://www.taobaotesting.com/blogs/2375 1.spring mvc简介 Spring MVC框架是一个MVC框架,通过实现Model-View-Controlle ...
- spring in action 5.1 小结 spring mvc起步
0 配置 DispatcherServlet 是 spring mvc的核心,常规配置方法可以查看之前博客.springMVC简单例子 在此使用servlet 3 规范和 spring3.1 功能增强 ...
随机推荐
- INTERSECT交集运算
INTERSECT交集是由既属于集合A,又属于集合B的所有元素组成的集合,如示意图1.
- iOS开发拓展篇—应用之间的跳转和数据传递
iOS开发拓展篇—应用之间的跳转和数据传 说明:本文介绍app如何打开另一个app,并且传递数据. 一.简单说明 新建两个应用,分别为应用A和应用B. 实现要求:在appA的页面中点击对应的按钮,能够 ...
- 我原来忽略的web开发点
打开一个网页,看到的东西的背后还有看不见的东西,程序员通常在一个页面影藏了许多标签,这个页面可以用来在许多地方使用,因为模板相同,只是有点地方不一样.还有类似于新浪微博的页面使用了很多花样,消息推送( ...
- JavaScript 用法
JavaScript 用法 HTML 中的脚本必须位于 <script> 与 </script> 标签之间. 脚本可被放置在 HTML 页面的 <body> 和 & ...
- Cloudera-Manager修改集群的IP
1.业务需求说明:由于公司网络进行了整改,随之而来的就是对应的ip网段发生了变化,其中我的hadoop的集群各主机的ip也相应的发生了改变,因此需要对各主机进行修改ip. 2.具体操作: 首先停止cd ...
- 《Java中方法的重写》
//方法的重写 /* 注意:方法的重写要遵循“两同两小一大”规则 “两同”即方法名相同.形参列表相同: “两小”(1)指的是子类方法返回值类型比父类方法的返回值类型更小或相等,[什么意思?] (2)子 ...
- 关于VS中文件属性的解释
生成操作(BuildAction) 属性:BuildAction 属性指示 Visual Studio .NET 在执行生成时对文件执行的操作.BuildAction 可以具有以下几个值之一: 无(N ...
- MySQL表类型和存储引擎版本不一致解决方法
使用的是老版本的mysql客户端Navicate 8 ,mysql 服务端用的是mysql5.6的版本,在修改版本引擎的时候出现版本不对; mysql error ‘TYPE=MyISAM’ 解决办法 ...
- (转)初探Backbone
(转)http://www.cnblogs.com/yexiaochai/archive/2013/07/27/3219402.html 初探Backbone 前言 Backbone简介 模型 模型和 ...
- linux上安装php+gd扩展
515 cd zlib-1.2.3 516 ./configure --prefix=/usr/local/zlib2 517 make && make install 518 cd ...