Skip to content

Commit d9bce38

Browse files
committed
reference
1 parent fa5c999 commit d9bce38

File tree

7 files changed

+69
-38
lines changed

7 files changed

+69
-38
lines changed

Book-RESTful-Service/README.md

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,26 @@ Open the **Application.java**
1717

1818

1919
This RESTful ws provides API for all below sub projects:
20-
###[Simple Java REST Client Using java.net.URL package](http://howtoprogram.xyz/2016/07/02/simple-java-rest-client-using-java-net-url-package)
21-
###[Java REST Client Using Spring RestTemplate](http://howtoprogram.xyz/2016/07/03/java-rest-client-using-spring-resttemplate/)
22-
###[Java REST Client Using Apache Httpcomponents](http://howtoprogram.xyz/2016/07/04/java-rest-client-using-apache-httpcomponents/)
23-
###[Java REST Client Using Jersey Client](http://howtoprogram.xyz/2016/07/05/java-rest-client-using-jersey-client/)
24-
###[Java REST Client Using Resteasy Client](http://howtoprogram.xyz/2016/07/12/java-rest-client-using-resteasy-client/)
25-
###[Java REST Client Using Resteasy Client Proxy Framework](http://howtoprogram.xyz/2016/07/13/java-rest-client-using-resteasy-client-proxy-framework/)
26-
###[Java REST Client Using Apache CXF Proxy based API](http://howtoprogram.xyz/2016/07/15/java-rest-client-using-apache-cxf-proxy-based-api/)
27-
###[Java REST Client Using Netflix Feign](http://howtoprogram.xyz/2016/07/18/java-rest-client-using-netflix-feign/)
28-
###[Java REST Client Using Unirest Java API](http://howtoprogram.xyz/2016/07/27/java-rest-client-using-unirest-java-api/)
29-
###[Java REST Client Using Retrofit 2](http://howtoprogram.xyz/2016/10/17/java-rest-client-using-retrofit-2/)
30-
###[Upload a File with OkHttp](http://howtoprogram.xyz/2016/11/21/upload-file-okhttp/)
31-
###[File Uploading with Open Feign](http://howtoprogram.xyz/2016/12/29/file-uploading-open-feign/)
20+
### [Simple Java REST Client Using java.net.URL package](https://howtoprogram.xyz/2016/07/02/simple-java-rest-client-using-java-net-url-package)
21+
22+
### [Java REST Client Using Spring RestTemplate](https://howtoprogram.xyz/2016/07/03/java-rest-client-using-spring-resttemplate/)
23+
24+
### [Java REST Client Using Apache HttpClient](https://howtoprogram.xyz/2016/07/04/java-rest-client-using-apache-httpcomponents/)
25+
26+
### [Java REST Client Using Jersey Client](http://howtoprogram.xyz/2016/07/05/java-rest-client-using-jersey-client/)
27+
28+
### [Java REST Client Using Resteasy Client](http://howtoprogram.xyz/2016/07/12/java-rest-client-using-resteasy-client/)
29+
30+
### [Java REST Client Using Resteasy Client Proxy Framework](http://howtoprogram.xyz/2016/07/13/java-rest-client-using-resteasy-client-proxy-framework/)
31+
32+
### [Java REST Client Using Apache CXF Proxy based API](http://howtoprogram.xyz/2016/07/15/java-rest-client-using-apache-cxf-proxy-based-api/)
33+
34+
### [Java REST Client Using Netflix Feign](http://howtoprogram.xyz/2016/07/18/java-rest-client-using-netflix-feign/)
35+
36+
### [Java REST Client Using Unirest Java API](http://howtoprogram.xyz/2016/07/27/java-rest-client-using-unirest-java-api/)
37+
38+
### [Java REST Client Using Retrofit 2](http://howtoprogram.xyz/2016/10/17/java-rest-client-using-retrofit-2/)
39+
40+
### [Upload a File with OkHttp](http://howtoprogram.xyz/2016/11/21/upload-file-okhttp/)
41+
42+
### [File Uploading with Open Feign](http://howtoprogram.xyz/2016/12/29/file-uploading-open-feign/)

Java-JsonPojo-Example/README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,21 @@ Open the **JsonPojoUtils.java**
1717
Source code are described in **[Convert Java Objects To JSON And Vice Versa](http://howtoprogram.xyz/2016/07/01/convert-java-objects-json-vice-versa/)**
1818

1919
## Related articles
20-
###[Simple Java REST Client Using java.net.URL package](http://howtoprogram.xyz/2016/07/02/simple-java-rest-client-using-java-net-url-package)
21-
###[Java REST Client Using Spring RestTemplate](http://howtoprogram.xyz/2016/07/03/java-rest-client-using-spring-resttemplate/)
22-
###[Java REST Client Using Apache Httpcomponents](http://howtoprogram.xyz/2016/07/04/java-rest-client-using-apache-httpcomponents/)
23-
###[Java REST Client Using Jersey Client](http://howtoprogram.xyz/2016/07/05/java-rest-client-using-jersey-client/)
24-
###[Java REST Client Using Resteasy Client](http://howtoprogram.xyz/2016/07/12/java-rest-client-using-resteasy-client/)
25-
###[Java REST Client Using Resteasy Client Proxy Framework](http://howtoprogram.xyz/2016/07/13/java-rest-client-using-resteasy-client-proxy-framework/)
26-
###[Java REST Client Using Apache CXF Proxy based API](http://howtoprogram.xyz/2016/07/15/java-rest-client-using-apache-cxf-proxy-based-api/)
27-
###[Java REST Client Using Netflix Feign](http://howtoprogram.xyz/2016/07/18/java-rest-client-using-netflix-feign/)
28-
###[Java REST Client Using Unirest Java API](http://howtoprogram.xyz/2016/07/27/java-rest-client-using-unirest-java-api/)
20+
21+
### [Simple Java REST Client Using java.net.URL package](http://howtoprogram.xyz/2016/07/02/simple-java-rest-client-using-java-net-url-package)
22+
23+
### [Java REST Client Using Spring RestTemplate](http://howtoprogram.xyz/2016/07/03/java-rest-client-using-spring-resttemplate/)
24+
25+
### [Java REST Client Using Apache Httpcomponents](http://howtoprogram.xyz/2016/07/04/java-rest-client-using-apache-httpcomponents/)
26+
27+
### [Java REST Client Using Jersey Client](http://howtoprogram.xyz/2016/07/05/java-rest-client-using-jersey-client/)
28+
29+
### [Java REST Client Using Resteasy Client](http://howtoprogram.xyz/2016/07/12/java-rest-client-using-resteasy-client/)
30+
31+
### [Java REST Client Using Resteasy Client Proxy Framework](http://howtoprogram.xyz/2016/07/13/java-rest-client-using-resteasy-client-proxy-framework/)
32+
33+
### [Java REST Client Using Apache CXF Proxy based API](http://howtoprogram.xyz/2016/07/15/java-rest-client-using-apache-cxf-proxy-based-api/)
34+
35+
### [Java REST Client Using Netflix Feign](http://howtoprogram.xyz/2016/07/18/java-rest-client-using-netflix-feign/)
36+
37+
### [Java REST Client Using Unirest Java API](http://howtoprogram.xyz/2016/07/27/java-rest-client-using-unirest-java-api/)

Java-RESTful-Client-Example/README.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,22 @@ The **BookResourceFeign.java, BookRepositoryImplFeign.java** includes all raw ex
3333
The **BookRepositoryImplUnirest.java** includes all raw examples about creating Java Java REST Client Using Unirest Java API
3434

3535
Source code are described:
36-
###[Convert Java Objects To JSON And Vice Versa](http://howtoprogram.xyz/2016/07/01/convert-java-objects-json-vice-versa/)
37-
###[Simple Java REST Client Using java.net.URL package](http://howtoprogram.xyz/2016/07/02/simple-java-rest-client-using-java-net-url-package)
38-
###[Java REST Client Using Spring RestTemplate](http://howtoprogram.xyz/2016/07/03/java-rest-client-using-spring-resttemplate/)
39-
###[Java REST Client Using Apache Httpcomponents](http://howtoprogram.xyz/2016/07/04/java-rest-client-using-apache-httpcomponents/)
40-
###[Java REST Client Using Jersey Client](http://howtoprogram.xyz/2016/07/05/java-rest-client-using-jersey-client/)
41-
###[Java REST Client Using Resteasy Client](http://howtoprogram.xyz/2016/07/12/java-rest-client-using-resteasy-client/)
42-
###[Java REST Client Using Resteasy Client Proxy Framework](http://howtoprogram.xyz/2016/07/13/java-rest-client-using-resteasy-client-proxy-framework/)
43-
###[Java REST Client Using Apache CXF Proxy based API](http://howtoprogram.xyz/2016/07/15/java-rest-client-using-apache-cxf-proxy-based-api/)
44-
###[Java REST Client Using Netflix Feign](http://howtoprogram.xyz/2016/07/18/java-rest-client-using-netflix-feign/)
45-
###[Java REST Client Using Unirest Java API](http://howtoprogram.xyz/2016/07/27/java-rest-client-using-unirest-java-api/)
36+
### [Convert Java Objects To JSON And Vice Versa](http://howtoprogram.xyz/2016/07/01/convert-java-objects-json-vice-versa/)
37+
38+
### [Simple Java REST Client Using java.net.URL package](http://howtoprogram.xyz/2016/07/02/simple-java-rest-client-using-java-net-url-package)
39+
40+
### [Java REST Client Using Spring RestTemplate](http://howtoprogram.xyz/2016/07/03/java-rest-client-using-spring-resttemplate/)
41+
42+
### [Java REST Client Using Apache Httpcomponents](http://howtoprogram.xyz/2016/07/04/java-rest-client-using-apache-httpcomponents/)
43+
44+
### [Java REST Client Using Jersey Client](http://howtoprogram.xyz/2016/07/05/java-rest-client-using-jersey-client/)
45+
46+
### [Java REST Client Using Resteasy Client](http://howtoprogram.xyz/2016/07/12/java-rest-client-using-resteasy-client/)
47+
48+
### [Java REST Client Using Resteasy Client Proxy Framework](http://howtoprogram.xyz/2016/07/13/java-rest-client-using-resteasy-client-proxy-framework/)
49+
50+
### [Java REST Client Using Apache CXF Proxy based API](http://howtoprogram.xyz/2016/07/15/java-rest-client-using-apache-cxf-proxy-based-api/)
51+
52+
### [Java REST Client Using Netflix Feign](http://howtoprogram.xyz/2016/07/18/java-rest-client-using-netflix-feign/)
53+
54+
### [Java REST Client Using Unirest Java API](http://howtoprogram.xyz/2016/07/27/java-rest-client-using-unirest-java-api/)

feign-spring-cloud-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Open spring-boot-netflix-feign-example\src\test\java\com\howtoprogram\Applicatio
2020
Right Click --> Run As --> JUnit test
2121

2222
This RESTful ws provides API for all below sub projects:
23-
###[howtoprogram.xyz/2017/01/29/using-netflix-feign-with-spring-cloud/]howtoprogram.xyz/2017/01/29/using-netflix-feign-with-spring-cloud/
23+
### [howtoprogram.xyz/2017/01/29/using-netflix-feign-with-spring-cloud/]howtoprogram.xyz/2017/01/29/using-netflix-feign-with-spring-cloud/

open-feign-example/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ Click **Finish** button to finish the importing
1010

1111

1212
Source code are described in:
13-
###[File Uploading with Open Feign](http://howtoprogram.xyz/2016/12/29/file-uploading-open-feign/)
14-
###[Basic Authentication with Open Feign](http://howtoprogram.xyz/2016/11/22/basic-authentication-open-feign/)
13+
### [File Uploading with Open Feign](http://howtoprogram.xyz/2016/12/29/file-uploading-open-feign/)
14+
15+
### [Basic Authentication with Open Feign](http://howtoprogram.xyz/2016/11/22/basic-authentication-open-feign/)

spring-new-reqmapping-annotations/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Open the **Application.java**
1616
**Right click -> Run As -> Java Application** or use the shortcut: **Alt+Shift+x, j** to start the main method
1717

1818

19-
###[Using New Composed Annotations for @RequestMapping in Spring Framework](http://howtoprogram.xyz/2017/03/16/using-new-composed-annotations-of-requestmapping-in-spring-framework/)
19+
### [Using New Composed Annotations for @RequestMapping in Spring Framework](http://howtoprogram.xyz/2017/03/16/using-new-composed-annotations-of-requestmapping-in-spring-framework/)

unirest-java-examples/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OkHttp Client Example and Tutorials
1+
# Unirest for Java Example and Tutorials
22

33

44
## 1. Import source code into Eclipse
@@ -11,5 +11,6 @@ Click **Finish** button to finish the importing
1111

1212

1313
Source code are described:
14-
###[Download a File with OkHttp](http://howtoprogram.xyz/2016/11/17/download-a-file-with-okhttp/)
15-
###[Set Timeout with OkHttp](http://howtoprogram.xyz/2016/11/23/set-timeout-okhttp/)
14+
### [Configure Basic Authentication on Unirest for Java](https://howtoprogram.xyz/2017/08/19/configure-basic-authentication-unirest-java/)
15+
16+
### [Java REST Client Example](https://howtoprogram.xyz/java-technologies/java-rest-client-example/)

0 commit comments

Comments
 (0)