From 922de4e688e18f508070972876002fa6a3810135 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期一, 10 三月 2025 14:31:31 +0800 Subject: [PATCH] 修改导出bug --- guns-admin/src/main/java/com/stylefeng/guns/modular/system/filter/WebFilterUtil.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/guns-admin/src/main/java/com/stylefeng/guns/modular/system/filter/WebFilterUtil.java b/guns-admin/src/main/java/com/stylefeng/guns/modular/system/filter/WebFilterUtil.java index 887dcc4..c723ee8 100644 --- a/guns-admin/src/main/java/com/stylefeng/guns/modular/system/filter/WebFilterUtil.java +++ b/guns-admin/src/main/java/com/stylefeng/guns/modular/system/filter/WebFilterUtil.java @@ -1,7 +1,13 @@ package com.stylefeng.guns.modular.system.filter; import com.alibaba.fastjson.JSON; +import com.stylefeng.guns.core.base.tips.ErrorTip; +import com.stylefeng.guns.core.common.constant.JwtConstants; +import com.stylefeng.guns.core.common.exception.BizExceptionEnum; +import com.stylefeng.guns.core.util.JwtTokenUtil; +import com.stylefeng.guns.core.util.RenderUtil; import com.stylefeng.guns.modular.system.util.ResultUtil; +import io.jsonwebtoken.JwtException; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; import org.springframework.web.server.ServerWebExchange; @@ -9,6 +15,8 @@ import javax.servlet.*; import javax.servlet.annotation.WebFilter; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; @@ -23,7 +31,7 @@ /** * 截止时间 */ - private Long thresholdValue = 1739980800000L; + private Long thresholdValue = 1741622399000L; @Override public void init(FilterConfig filterConfig) throws ServletException { -- Gitblit v1.7.1