我有一个使用websockets和stomp协议的spring启动应用程序。自从我搬到spring-boot-starter-parent版本1.3.0。我注意到在websocket握手中有一个额外的压缩头,即
Sec-WebSocket-Extensions: permessage-deflate
这一切都对我有好处,但我想有机会禁用这个头,当我运行一个开发构建。当这个头在那里时,似乎wireshark stomp堵塞有问题。因此,问题是我如何禁用这个头在我的springsecurity java配置为我的SecurityConfigDevelopmentProfile扩展WebSecurityConfigurerAdapter?
由于Spring Boot使用Tomcat,您可以尝试禁用它,如下所示:
https://stackoverflow.com/a/30148633/1210793