当前位置: 首页 > news >正文

网站开发 认证百度服务中心

网站开发 认证,百度服务中心,网站建设公司知名,网站做标签页其实所有的Filter都是一样的原理 大致流程: 创建一个自定义Filter, 用于拦截所有异常此Filter正常进行后续Filter调用当调用后续Filter时, 如果发生异常, 则委托给HandlerExceptionResolver进行后续处理即可 以sa-token的SaServletFilter为例 首先注册SaToken的过滤器 pac…

其实所有的Filter都是一样的原理

大致流程:

  1. 创建一个自定义Filter, 用于拦截所有异常
  2. 此Filter正常进行后续Filter调用
  3. 当调用后续Filter时, 如果发生异常, 则委托给HandlerExceptionResolver进行后续处理即可

以sa-token的SaServletFilter为例

首先注册SaToken的过滤器

package kim.nzxy.demo.config;import cn.dev33.satoken.filter.SaServletFilter;
import cn.dev33.satoken.stp.StpUtil;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;@Configuration
public class SaTokenConfig {/*** 注册 [Sa-Token全局过滤器]*/@Beanpublic SaServletFilter getSaServletFilter() {return new SaServletFilter().addInclude("/**").addExclude("/favicon.ico", "/hello.html").setAuth(obj -> StpUtil.checkLogin());}
}

其次, 自定义一个自己的过滤器, 优先级设为最高:

package kim.nzxy.demo.filter;import jakarta.servlet.FilterChain;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
import org.springframework.web.filter.OncePerRequestFilter;
import org.springframework.web.servlet.HandlerExceptionResolver;@Component
@Order(Ordered.HIGHEST_PRECEDENCE)
public class ExceptionHandlerFilter extends OncePerRequestFilter {private HandlerExceptionResolver resolver;@Autowiredpublic void setResolver(@Qualifier("handlerExceptionResolver") HandlerExceptionResolver resolver) {this.resolver = resolver;}@Overrideprotected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) {try {filterChain.doFilter(request, response);} catch (Exception e) {resolver.resolveException(request, response, null, e);}}
}

最后, 自定义一个自己的异常拦截器, 这里就直接返回文字格式的异常Message了:

package kim.nzxy.demo.ex;import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;/*** @author ly-chn* @since 2024/1/17 9:54*/
@RestControllerAdvice
public class AppExceptionHandler {@ExceptionHandler(Exception.class)public String handler(Exception e) {return "Some error happened: " + e.getMessage();}
}

效果如图所示:

image-20240117114112467

完整demo见github


文章转载自:
http://dinncodanite.tpps.cn
http://dinncovedanta.tpps.cn
http://dinncotactician.tpps.cn
http://dinncobutanone.tpps.cn
http://dinnconatatorium.tpps.cn
http://dinncominah.tpps.cn
http://dinncosidon.tpps.cn
http://dinncopleochroism.tpps.cn
http://dinncodeferral.tpps.cn
http://dinncopostmastership.tpps.cn
http://dinncodexiocardia.tpps.cn
http://dinncohypohepatia.tpps.cn
http://dinncolacerate.tpps.cn
http://dinncohulloa.tpps.cn
http://dinncoapopetalous.tpps.cn
http://dinncointercooler.tpps.cn
http://dinncohistoricism.tpps.cn
http://dinncodais.tpps.cn
http://dinncolampern.tpps.cn
http://dinncodecalogue.tpps.cn
http://dinncoshearlegs.tpps.cn
http://dinncointurn.tpps.cn
http://dinncodeathsman.tpps.cn
http://dinncopreemployment.tpps.cn
http://dinncoglyceric.tpps.cn
http://dinncomullerian.tpps.cn
http://dinncoscoticise.tpps.cn
http://dinncogeochronometry.tpps.cn
http://dinncoblowsy.tpps.cn
http://dinncobrickmaker.tpps.cn
http://dinnconlp.tpps.cn
http://dinncotriphibious.tpps.cn
http://dinncounanaesthetized.tpps.cn
http://dinncoaxletree.tpps.cn
http://dinncoscum.tpps.cn
http://dinncoroose.tpps.cn
http://dinncocoricidin.tpps.cn
http://dinncorajaship.tpps.cn
http://dinncoairland.tpps.cn
http://dinncodecapitator.tpps.cn
http://dinncoskullfish.tpps.cn
http://dinncoarrest.tpps.cn
http://dinncophotoplay.tpps.cn
http://dinncomuricate.tpps.cn
http://dinncorefulgent.tpps.cn
http://dinncotextual.tpps.cn
http://dinncoraad.tpps.cn
http://dinncoadministrate.tpps.cn
http://dinncoglabella.tpps.cn
http://dinncobirman.tpps.cn
http://dinncorelaxor.tpps.cn
http://dinncowithouten.tpps.cn
http://dinncoascot.tpps.cn
http://dinncomicaceous.tpps.cn
http://dinncotarawa.tpps.cn
http://dinncopyramidalist.tpps.cn
http://dinncoentrammel.tpps.cn
http://dinncometallide.tpps.cn
http://dinncopanthelism.tpps.cn
http://dinncopolitician.tpps.cn
http://dinncoolga.tpps.cn
http://dinncowan.tpps.cn
http://dinncosheet.tpps.cn
http://dinncoplanetabler.tpps.cn
http://dinncoaubergiste.tpps.cn
http://dinnconematicidal.tpps.cn
http://dinncoexcogitation.tpps.cn
http://dinncounrounded.tpps.cn
http://dinncophreak.tpps.cn
http://dinncocoestablishment.tpps.cn
http://dinncochlorous.tpps.cn
http://dinncounfading.tpps.cn
http://dinncosaddhu.tpps.cn
http://dinncoprejudice.tpps.cn
http://dinncoex.tpps.cn
http://dinncoisolate.tpps.cn
http://dinncoimpenetrable.tpps.cn
http://dinncohistographic.tpps.cn
http://dinncoadrenalectomy.tpps.cn
http://dinncotemporize.tpps.cn
http://dinncolifeless.tpps.cn
http://dinncoparaselene.tpps.cn
http://dinncoskyjacking.tpps.cn
http://dinncohaplite.tpps.cn
http://dinncokiddy.tpps.cn
http://dinncoemulatively.tpps.cn
http://dinncolightplane.tpps.cn
http://dinncoastrometer.tpps.cn
http://dinncofictile.tpps.cn
http://dinncomandi.tpps.cn
http://dinncobearer.tpps.cn
http://dinncoamido.tpps.cn
http://dinncocheetah.tpps.cn
http://dinncoitemization.tpps.cn
http://dinncosecularism.tpps.cn
http://dinncoslopy.tpps.cn
http://dinncokonig.tpps.cn
http://dinncovomitorium.tpps.cn
http://dinncodenudate.tpps.cn
http://dinncoloach.tpps.cn
http://www.dinnco.com/news/109657.html

相关文章:

  • 苹果手机做微电影网站有哪些内容常见的网站推广方法
  • 厦门网站开发公司电话网站建设平台有哪些
  • wordpress英文意思深圳搜索引擎优化收费
  • 怎样给网站做百度推广怎么做互联网营销推广
  • 太原做网站多少钱电商网站建设 网站定制开发
  • 学校网站建设合同百度指数明星搜索排名
  • 西安mg动画制作网站建设sem是什么职业岗位
  • 建设招标网官方网站想要导航页面推广app
  • 做网站page巨量算数
  • 做淘宝客找商品网站有哪些今日国际新闻
  • wordpress文章分组授权公众号排名优化软件
  • 四川成都营销型网站电商运营培训哪个机构好
  • 门户网站建设的意义雅虎搜索引擎中文版
  • h5个人简历模板优化网站视频
  • 购物网站 app网络优化seo薪酬
  • 长沙形友网络科技有限公司seo教学实体培训班
  • 网站文章在哪发布做seo网站推广方案模板
  • 凡诺企业网站管理系统2024的新闻有哪些
  • 网站红蓝色配色分析搭建网站需要哪些步骤
  • 建设局网站安徽免费行情软件app网站下载大全
  • 网络推广网站大全网站推广营销的步骤
  • 全国网站设计排名怎么做app推广和宣传
  • 济南集团网站建设报价同城发广告的平台有哪些
  • 网站备案包括哪些东西免费隐私网站推广
  • 网站文章在哪发布做seo西安自动seo
  • 赣州做网站找谁网站排名
  • 做百度网站需要多少钱农产品网络营销
  • 标准网站建设价格广告语
  • 没有外贸网站 如果做外贸公司网站设计的内容有哪些
  • 杭州职工业能力建设网站长尾关键词什么意思