Skip to content

Commit 20d0bec

Browse files
imkulwantsbrannen
authored andcommitted
Fix Javadoc links
See gh-29408
1 parent 5f2a6fd commit 20d0bec

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

spring-websocket/src/main/java/org/springframework/web/socket/client/standard/AnnotatedEndpointConnectionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
/**
3434
* WebSocket {@link ConnectionManagerSupport connection manager} that connects
3535
* to the server via {@link WebSocketContainer} and handles the session with an
36-
* {@link javax.websocket.ClientEndpoint @ClientEndpoint} endpoint.
36+
* {@link jakarta.websocket.ClientEndpoint @ClientEndpoint} endpoint.
3737
*
3838
* @author Rossen Stoyanchev
3939
* @since 4.0

spring-websocket/src/main/java/org/springframework/web/socket/config/annotation/SockJsServiceRegistration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public SockJsServiceRegistration setTaskScheduler(TaskScheduler scheduler) {
102102
* server. Since the iframe needs to load the SockJS javascript client library,
103103
* this property allows specifying where to load it from.
104104
* <p>By default this is set to point to
105-
* "https://cdn.jsdelivr.net/sockjs/0.3.4/sockjs.min.js". However it can
105+
* "<a href="https://cdn.jsdelivr.net/sockjs/1.0.0/sockjs.min.js">sockjs.min.js</a>". However, it can
106106
* also be set to point to a URL served by the application.
107107
* <p>Note that it's possible to specify a relative URL in which case the URL
108108
* must be relative to the iframe URL. For example assuming a SockJS endpoint

spring-websocket/src/main/java/org/springframework/web/socket/sockjs/frame/AbstractSockJsMessageCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public String encode(String... messages) {
4646
}
4747

4848
/**
49-
* Apply standard JSON string quoting (see https://www.json.org/).
49+
* Apply standard JSON string quoting (see <a href="https://www.json.org/">json.org</a>).
5050
*/
5151
protected abstract char[] applyJsonQuoting(String content);
5252

spring-websocket/src/main/java/org/springframework/web/socket/sockjs/support/AbstractSockJsService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public String getName() {
149149
* server. Since the iframe needs to load the SockJS javascript client library,
150150
* this property allows specifying where to load it from.
151151
* <p>By default this is set to point to
152-
* "https://cdn.jsdelivr.net/sockjs/1.0.0/sockjs.min.js".
152+
* "<a href="https://cdn.jsdelivr.net/sockjs/1.0.0/sockjs.min.js">sockjs.min.js</a>".
153153
* However, it can also be set to point to a URL served by the application.
154154
* <p>Note that it's possible to specify a relative URL in which case the URL
155155
* must be relative to the iframe URL. For example assuming a SockJS endpoint

0 commit comments

Comments
 (0)