java spring boot2设置Cookie解析器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java spring boot2设置Cookie解析器相关的知识,希望对你有一定的参考价值。

import org.apache.catalina.Context;
import org.apache.tomcat.util.http.LegacyCookieProcessor;
import org.springframework.boot.web.embedded.tomcat.ConfigurableTomcatWebServerFactory;
import org.springframework.boot.web.embedded.tomcat.TomcatContextCustomizer;
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @author henfanren
 * @date Created in 2018/10/26 09:40
 */
@Configuration
public class LegacyCookieProcessorConfiguration {

    @Bean
    public WebServerFactoryCustomizer<ConfigurableTomcatWebServerFactory> webServerFactoryCustomizer() {
        return factory -> factory.addContextCustomizers((TomcatContextCustomizer) context -> {
            context.setCookieProcessor(new LegacyCookieProcessor());
        });
    }

}

以上是关于java spring boot2设置Cookie解析器的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot2.0之 jar打包方式

Spring Boot2中配置HTTPS

Spring Boot2 系列教程 | 整合 thymeleaf

Spring Boot2 系列教程Spring Boot 整合 Freemarker

Spring Boot2 系列教程 (十四) | 统一异常处理

Spring Boot2:性感banner,在线发牌