SpringMVC文件上传和异常抛出

一、SpringMVC文件上传

文件上传客户端表单需要满足:
表单项type=“file”
表单的提交方式是POST
表单的enctype属性是多部分表单形式,及enctype=“multipart/form-data”

1.1、环境搭建

  1. 创建Web工程
  2. 导入Jar包

在这里插入图片描述

  1. springmvc配置文件
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       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
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <context:component-scan base-package="com.hpe.controller" />
    <context:component-scan base-package="com.hpe.exceptionhandler" />
    <mvc:annotation-driven />

    <mvc:resources mapping="/js/**" location="/js/" />
    <mvc:resources mapping="/css/**" location="/css/" />
    <mvc:resources mapping="/img/**" location="/img/" />

    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" >
        <property name="prefix" value="/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
    <!-- 配置文件上传解析器
    这里的id一定要写,而且写法固定
    -->
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver" >
        <property name="defaultEncoding" value="utf-8" />
        <property name="maxUploadSize" value="90000000000" />
    </bean>
</beans>

注意这里的文件上传解析器。

  1. 用于文件上传的页面
 <%--文件上传表单--%>
  <form action="${pageContext.request.contextPath}/test/test2" method="post" enctype="multipart/form-data">
      姓名<input type="text" name="username"/><br/>
    文件<input type="file" name="upload"/>
      <button type="submit">提交</button>
  </form>

  <%--多文件上传表单  需要同一个name--%>
  <form action="${pageContext.request.contextPath}/test/test3" method="post" enctype="multipart/form-data">
      姓名<input type="text" name="username"/><br/>
      文件<input type="file" name="upload"/>
      文件<input type="file" name="upload"/>
      文件<input type="file" name="upload"/>
      <button type="submit">提交</button>
  </form>

1.2、单文件上传

@RequestMapping("/test2")
    public String test2(String username,MultipartFile upload) throws IOException {
        System.out.println(username);

        //将文件保存到D盘
        String filename = upload.getOriginalFilename();
        upload.transferTo(new File("D:\\"+filename));
        return "success";
    }

1.3、多文件上传

//多个文件上传
@RequestMapping("/test3")
public String test3(String username,MultipartFile[] upload) throws IOException {
System.out.println(username);
for (MultipartFile file : upload) {
//将文件保存到D盘
String filename = file.getOriginalFilename();
file.transferTo(new File(“D:\”+filename));
}
return “success”;
}

二、SpringMVC异常处理

2.1、异常处理思路

系统的dao、service、controller出现都通过throws Exception向上抛出,最后由springmvc前端控制器
交由异常处理器进行异常处理。处理异常时先抛到控制器内配置的异常处理器,如果解决不了继续往上抛

在这里插入图片描述

2.2、控制器异常处理式

配置控制器异常处理,使用@Controller+@ExceptionHandler 。

2.2.1、编写控制器类

//在controller内部处理异常

/**

  • @ExceptionHandler用来定义异常处理,这个异常处理在控制器内部,只能处理控制器内部方法出现
  • 在这个Controller任意方法中,只要出现了ArithmeticException,就会被该方法捕获然后运行该方法
  • @ExceptionHandler的参数是Throwable实现类的Class数组,可以填多个值,但是要加大括号
  • @param e
  • @return
    */
    @ExceptionHandler(ArithmeticException.class)
    public String err(ArithmeticException e){
    //对异常的处理
    System.out.println(e.getMessage());
    return “error”;
    }

@RequestMapping("/test4")
public String test4(){
int i = 100/0;
return “success”;
}

2.3、全局异常处理

控制器的异常处理只能处理控制器内部的异常,如果希望处理控制器抛出的所有异常⽽不希望在控制器
内部处理, 这就需要配置全局异常处理。配置全局异常处理, 使⽤
@ControllerAdvice+@ExceptionHandler 。

2.3.1、在控制器中添加方法

@Controller
@RequestMapping("/a")
public class AController {
    @RequestMapping("/test1")
    public String test1(){
        int i = 100/0;
        return "success";
    }
}

2.3.2、编写全局异常处理类

//全局配置需要这个注解
@ControllerAdvice
public class MyExceptionHandler {

    @ExceptionHandler(ArithmeticException.class)
    public ModelAndView aexcetionhandler(ArithmeticException e){
        System.out.println("..................................");
        ModelAndView mv = new ModelAndView();
        mv.addObject("msg", "除数不能为零");
        mv.setViewName("error");
        return mv;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值