spirng boot 添加过滤器

Posted zfzf1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spirng boot 添加过滤器相关的知识,希望对你有一定的参考价值。

@WebFilter(urlPatterns = "/*", filterName = "hystrixFilter")
public class MyFilter implements Filter {

	public void init(FilterConfig filterConfig) throws ServletException {
		
	}

	public void doFilter(ServletRequest request, ServletResponse response,
			FilterChain chain) throws IOException, ServletException {
		System.out.println("**************");
		System.out.println("过滤器");
		HystrixRequestContext ctx = HystrixRequestContext.initializeContext();
		try {
			chain.doFilter(request, response);
		} catch (Exception e) {
			
		} finally {
			ctx.shutdown();
		}
	}

	public void destroy() {
		
	}

}

  

@SpringBootApplication
@EnableEurekaClient
@EnableCircuitBreaker
@ServletComponentScan
public class SaleApp {
	
	@Bean
	@LoadBalanced
	public RestTemplate getRestTemplate() {
		return new RestTemplate();
	}
	
	public static void main(String[] args) {
		new SpringApplicationBuilder(SaleApp.class).web(true).run(args);
	}

}

  

以上是关于spirng boot 添加过滤器的主要内容,如果未能解决你的问题,请参考以下文章

spirng boot打包成war部署

IDEA spirng boot @Autowired注解 mapper出现红色下划线解决方法

IDEA spirng boot @Autowired注解 mapper出现红色下划线解决方法

Spirng boot maven多模块打包不踩坑

如何在 Spring Boot 中添加过滤器类?

glsl片段着色器颜色添加逻辑