Fix HTTP urls to HTTPS
* Do not fix urls for the `http://apache.org/xml/features` when we configure XML components * Do not fix urls for localhost and fake links in tests * Fix all the dead links in docs
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
<xsd:import namespace="http://www.springframework.org/schema/beans"/>
|
||||
<xsd:import namespace="http://www.springframework.org/schema/tool"/>
|
||||
<xsd:import namespace="http://www.springframework.org/schema/integration"
|
||||
schemaLocation="http://www.springframework.org/schema/integration/spring-integration-5.2.xsd"/>
|
||||
schemaLocation="https://www.springframework.org/schema/integration/spring-integration-5.2.xsd"/>
|
||||
|
||||
<xsd:annotation>
|
||||
<xsd:documentation><![CDATA[
|
||||
|
||||
@@ -270,7 +270,7 @@ public class StompInboundChannelAdapterWebSocketIntegrationTests {
|
||||
webSocketStompSessionManager.setAutoReceipt(true);
|
||||
webSocketStompSessionManager.setRecoveryInterval(1000);
|
||||
WebSocketHttpHeaders handshakeHeaders = new WebSocketHttpHeaders();
|
||||
handshakeHeaders.setOrigin("http://foo.com");
|
||||
handshakeHeaders.setOrigin("http://www.foo.com/");
|
||||
webSocketStompSessionManager.setHandshakeHeaders(handshakeHeaders);
|
||||
StompHeaders stompHeaders = new StompHeaders();
|
||||
stompHeaders.setHeartbeat(new long[] { 10000, 10000 });
|
||||
@@ -327,7 +327,7 @@ public class StompInboundChannelAdapterWebSocketIntegrationTests {
|
||||
public void registerStompEndpoints(StompEndpointRegistry registry) {
|
||||
registry.addEndpoint("/ws")
|
||||
.setHandshakeHandler(handshakeHandler())
|
||||
.setAllowedOrigins("http://foo.com")
|
||||
.setAllowedOrigins("http://www.foo.com/")
|
||||
.addInterceptors(new HandshakeInterceptor() {
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user