• springboot中全局异常,系统配置


    1.springboot中的异常

    package com.ithuan.demo;
    
    import javax.servlet.http.HttpServletRequest;
    
    import org.springframework.web.bind.annotation.ControllerAdvice;
    import org.springframework.web.bind.annotation.ExceptionHandler;
    import org.springframework.web.bind.annotation.ResponseBody;
    
    /**
     * 1、新建一个Class,这里取名为GlobalDefaultExceptionHandler
     * 2、在class上添加注解,@ControllerAdvice;
     * 3、在class中添加一个方法
     * 4、在方法上添加@ExcetionHandler拦截相应的异常信息;
     * 5、如果返回的是View -- 方法的返回值是ModelAndView;
     * 6、如果返回的是String或者是Json数据,那么需要在方法上添加@ResponseBody注解.
    */
    
    @ControllerAdvice	
    public class MyException  {
    	@ExceptionHandler(value = Exception.class)
    	@ResponseBody
    	public String myMethod(HttpServletRequest req, Exception e){
    		return "服務器異常";
    	}
    	
    }
    

    springboot中的常见的配置

    ##端口号设置
    #server.port=8080
    #server.address= # bind to a specific NIC
    #server.session-timeout= # session timeout in seconds
    #the context path, defaults to '/'
    #server.context-path=/spring-boot
    #server.servlet-path= # the servlet path, defaults to '/'
    #server.tomcat.access-log-pattern= # log pattern of the access log
    #server.tomcat.access-log-enabled=false # is access logging enabled
    #server.tomcat.protocol-header=x-forwarded-proto # ssl forward headers
    #server.tomcat.remote-ip-header=x-forwarded-for
    #server.tomcat.basedir=/tmp # base dir (usually not needed, defaults to tmp)
    #server.tomcat.background-processor-delay=30; # in seconds
    #server.tomcat.max-threads = 0 # number of threads in protocol handler
    ##编码
    #server.tomcat.uri-encoding = UTF-8 # character encoding to use for URL decoding
    

      

  • 相关阅读:
    程序员书单合集,持续整理中
    informatica9.5.1后最一步出错(ICMD_10033,INFACMD_10053)
    Informatica9.5.1配置域名错误(ICMD_10033,INFASETUP_10002,RSVCSHARED_00021)
    程序员书单_UML篇
    程序员书单_J2EE专题
    程序员书单_求职面试
    程序员书单_java专项进阶篇
    程序员书单_HTML篇
    程序员书单_数据结构和算法篇
    程序员书单_HeadFirst系列
  • 原文地址:https://www.cnblogs.com/liushisaonian/p/9349833.html
Copyright © 2020-2023  润新知