Skip to content

Commit 4aa97f8

Browse files
committed
Remove references to CommonsHttpInvokerRequestExecutor
1 parent 2667956 commit 4aa97f8

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

spring-web/src/main/java/org/springframework/remoting/httpinvoker/HttpInvokerRequestExecutor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2005 the original author or authors.
2+
* Copyright 2002-2014 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,10 +28,10 @@
2828
*
2929
* <p>Two implementations are provided out of the box:
3030
* <ul>
31-
* <li><b>SimpleHttpInvokerRequestExecutor:</b>
31+
* <li><b>{@code SimpleHttpInvokerRequestExecutor}:</b>
3232
* Uses J2SE facilities to execute POST requests, without support
3333
* for HTTP authentication or advanced configuration options.
34-
* <li><b>CommonsHttpInvokerRequestExecutor:</b>
34+
* <li><b>{@code HttpComponentsHttpInvokerRequestExecutor}:</b>
3535
* Uses Jakarta's Commons HttpClient to execute POST requests,
3636
* allowing to use a preconfigured HttpClient instance
3737
* (potentially with authentication, HTTP connection pooling, etc).

spring-web/src/main/java/org/springframework/remoting/httpinvoker/SimpleHttpInvokerRequestExecutor.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2013 the original author or authors.
2+
* Copyright 2002-2014 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -36,8 +36,9 @@
3636
* advanced configuration options.
3737
*
3838
* <p>Designed for easy subclassing, customizing specific template methods.
39-
* However, consider CommonsHttpInvokerRequestExecutor for more sophisticated
40-
* needs: The J2SE HttpURLConnection is rather limited in its capabilities.
39+
* However, consider {@code HttpComponentsHttpInvokerRequestExecutor} for
40+
* more sophisticated needs: The J2SE HttpURLConnection is rather limited
41+
* in its capabilities.
4142
*
4243
* @author Juergen Hoeller
4344
* @since 1.1

0 commit comments

Comments
 (0)