【7.1.5】ThreadLocal使用加强,在Filter清空ThreadLocal

pull/22/MERGE
fengshuonan 2021-10-29 12:04:41 +08:00
parent ddd2543ef9
commit ed4c71e088
13 changed files with 238 additions and 1 deletions

View File

@ -0,0 +1,19 @@
package cn.stylefeng.roses.kernel.rule.threadlocal;
/**
* 便ThreadLocal
*
* @author fengshuonan
* @date 2021/10/29 11:14
*/
public interface RemoveThreadLocalApi {
/**
* ThreadLocal
*
* @author fengshuonan
* @date 2021/10/29 11:19
*/
void removeThreadLocalAction();
}

View File

@ -0,0 +1,20 @@
package cn.stylefeng.roses.kernel.auth.api.context;
import cn.stylefeng.roses.kernel.rule.threadlocal.RemoveThreadLocalApi;
import org.springframework.stereotype.Component;
/**
* ThreadLocalHolder
*
* @author fengshuonan
* @date 2021/10/29 11:41
*/
@Component
public class LoginUserRemoveThreadLocalHolder implements RemoveThreadLocalApi {
@Override
public void removeThreadLocalAction() {
LoginUserHolder.remove();
}
}

View File

@ -0,0 +1,20 @@
package cn.stylefeng.roses.kernel.scanner.api.holder;
import cn.stylefeng.roses.kernel.rule.threadlocal.RemoveThreadLocalApi;
import org.springframework.stereotype.Component;
/**
* ipThreadLocalHolder
*
* @author fengshuonan
* @date 2021/10/29 11:42
*/
@Component
public class IpAddrRemoveThreadLocalHolder implements RemoveThreadLocalApi {
@Override
public void removeThreadLocalAction() {
IpAddrHolder.clear();
}
}

View File

@ -19,6 +19,7 @@
<module>security-api</module>
<module>security-sdk-black-white</module>
<module>security-sdk-captcha</module>
<module>security-sdk-clear-threadlocal</module>
<module>security-sdk-cors</module>
<module>security-sdk-count</module>
<module>security-sdk-xss</module>

View File

@ -0,0 +1 @@
清空web请求中的ThreadLocal中的变量值

View File

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>kernel-d-security</artifactId>
<version>7.1.5</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>security-sdk-clear-threadlocal</artifactId>
<packaging>jar</packaging>
<dependencies>
<!--安全模块的api-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>security-api</artifactId>
<version>${roses.version}</version>
</dependency>
<!--web模块-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,68 @@
/*
* Copyright [2020-2030] [https://www.stylefeng.cn]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* GunsAPACHE LICENSE 2.0使
*
* 1.LICENSE
* 2.Guns
* 3.
* 4. https://gitee.com/stylefeng/guns
* 5. https://gitee.com/stylefeng/guns
* 6.
*/
package cn.stylefeng.roses.kernel.security.clear;
import cn.hutool.extra.spring.SpringUtil;
import cn.stylefeng.roses.kernel.rule.threadlocal.RemoveThreadLocalApi;
import lombok.extern.slf4j.Slf4j;
import javax.servlet.*;
import java.io.IOException;
import java.util.Map;
/**
* ThreadLocal
*
* @author fengshuonan
* @date 2021/10/29 11:11
*/
@Slf4j
public class ClearThreadLocalFilter implements Filter {
public static final String NAME = "ClearThreadLocalFilter";
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ServletException, IOException {
try {
chain.doFilter(request, response);
} finally {
try {
Map<String, RemoveThreadLocalApi> beansOfType = SpringUtil.getBeansOfType(RemoveThreadLocalApi.class);
if (beansOfType != null) {
for (Map.Entry<String, RemoveThreadLocalApi> entry : beansOfType.entrySet()) {
RemoveThreadLocalApi removeThreadLocalApi = entry.getValue();
removeThreadLocalApi.removeThreadLocalAction();
}
}
} catch (Exception e) {
// 清空失败
log.error("清空threadLocal失败", e);
}
}
}
}

View File

@ -46,6 +46,7 @@ import java.util.Date;
*/
@Slf4j
@ControllerAdvice
@SuppressWarnings("all")
public class EncryptionRequestBodyAdvice implements RequestBodyAdvice {
static {

View File

@ -31,6 +31,7 @@ import java.util.Date;
*/
@Slf4j
@ControllerAdvice
@SuppressWarnings("all")
public class EncryptionResponseBodyAdvice implements ResponseBodyAdvice {
static {
@ -66,6 +67,7 @@ public class EncryptionResponseBodyAdvice implements ResponseBodyAdvice {
// 从 ThreadLocal 中获取 aes key
String aesKey = EncryptionHolder.getAesKey();
// 偏移
byte[] iv = HexUtil.decodeHex(SecureUtil.md5(StrUtil.format("{}{}", aesKey, DateUtil.format(new Date(), "yyyyMMdd"))));

View File

@ -0,0 +1,20 @@
package cn.stylefeng.roses.kernel.security.request.encrypt.holder;
import cn.stylefeng.roses.kernel.rule.threadlocal.RemoveThreadLocalApi;
import org.springframework.stereotype.Component;
/**
* ThreadLocal
*
* @author fengshuonan
* @date 2021/10/29 11:37
*/
@Component
public class EncryptRemoveThreadLocalHolder implements RemoveThreadLocalApi {
@Override
public void removeThreadLocalAction() {
EncryptionHolder.clearAesKey();
}
}

View File

@ -24,6 +24,13 @@
<version>${roses.version}</version>
</dependency>
<!--threadLocal清除器-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>
<artifactId>security-sdk-clear-threadlocal</artifactId>
<version>${roses.version}</version>
</dependency>
<!--图形验证码模块-->
<dependency>
<groupId>cn.stylefeng.roses</groupId>

View File

@ -24,8 +24,14 @@
*/
package cn.stylefeng.roses.kernel.security.starter;
import cn.stylefeng.roses.kernel.security.api.constants.SecurityConstants;
import cn.stylefeng.roses.kernel.security.clear.ClearThreadLocalFilter;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import static org.springframework.core.Ordered.HIGHEST_PRECEDENCE;
/**
*
*
@ -35,4 +41,20 @@ import org.springframework.context.annotation.Configuration;
@Configuration
public class GunsSecurityAutoConfiguration {
/**
* ThreadLocal
*
* @author fengshuonan
* @date 2021/10/29 11:29
*/
@Bean
public FilterRegistrationBean<ClearThreadLocalFilter> clearThreadLocalFilterFilterRegistrationBean() {
FilterRegistrationBean<ClearThreadLocalFilter> bean = new FilterRegistrationBean<>();
bean.setFilter(new ClearThreadLocalFilter());
bean.addUrlPatterns(SecurityConstants.DEFAULT_XSS_PATTERN);
bean.setName(ClearThreadLocalFilter.NAME);
bean.setOrder(HIGHEST_PRECEDENCE + 1);
return bean;
}
}

View File

@ -0,0 +1,21 @@
package cn.stylefeng.roses.kernel.validator.api.context;
import cn.stylefeng.roses.kernel.rule.threadlocal.RemoveThreadLocalApi;
import org.springframework.stereotype.Component;
/**
* ThreadLocal
*
* @author fengshuonan
* @date 2021/10/29 11:37
*/
@Component
public class RequestRemoveThreadLocalHolder implements RemoveThreadLocalApi {
@Override
public void removeThreadLocalAction() {
RequestGroupContext.clear();
RequestParamContext.clear();
}
}