[BAEL-19366] REST move 3

This commit is contained in:
Sjmillington 2019-11-26 16:59:51 +00:00
parent bae6af78d1
commit 8e4cffdddc
46 changed files with 18 additions and 9 deletions

View File

@ -799,7 +799,7 @@
<module>spring-rest</module>
<module>spring-rest-angular</module>
<module>spring-rest-compress</module>
<module>spring-rest-full</module>
<module>spring-rest-testing</module>
<module>spring-rest-hal-browser</module>
<module>spring-rest-query-language</module>
<module>spring-rest-shell</module>
@ -981,7 +981,7 @@
<module>spring-rest</module>
<module>spring-rest-angular</module>
<module>spring-rest-compress</module>
<module>spring-rest-full</module>
<module>spring-rest-testing</module>
<module>spring-rest-simple</module>
<module>spring-resttemplate</module>
<module>spring-security-acl</module>
@ -1538,7 +1538,7 @@
<module>spring-rest</module>
<module>spring-rest-angular</module>
<module>spring-rest-compress</module>
<module>spring-rest-full</module>
<module>spring-rest-testing</module>
<module>spring-rest-hal-browser</module>
<module>spring-rest-query-language</module>
<module>spring-rest-shell</module>

View File

@ -9,4 +9,9 @@ This module contains articles about REST APIs in Spring
- [Spring RequestMapping](https://www.baeldung.com/spring-requestmapping)
- [Spring and Apache FileUpload](https://www.baeldung.com/spring-apache-file-upload)
- [Test a REST API with curl](https://www.baeldung.com/curl-rest)
- [Best Practices for REST API Error Handling](https://www.baeldung.com/rest-api-error-handling-best-practices)
- [Best Practices for REST API Error Handling](https://www.baeldung.com/rest-api-error-handling-best-practices)
### NOTE:
This module is closed and should **not** be used to store the code
for any further articles.

View File

@ -1,6 +1,6 @@
## Spring REST Full
## Spring REST Testing
This module contains articles about REST APIs with Spring
This module contains articles about testing REST APIs with Spring
### Courses
@ -17,7 +17,6 @@ The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
mvn clean install
```
### Set up MySQL
```
mysql -u root -p

View File

@ -2,9 +2,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>spring-rest-full</artifactId>
<artifactId>spring-rest-testing</artifactId>
<version>0.1-SNAPSHOT</version>
<name>spring-rest-full</name>
<name>spring-rest-testing</name>
<packaging>war</packaging>
<parent>

View File

@ -17,3 +17,8 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
- [Uploading MultipartFile with Spring RestTemplate](https://www.baeldung.com/spring-rest-template-multipart-upload)
- [Get and Post Lists of Objects with RestTemplate](https://www.baeldung.com/spring-rest-template-list)
- [Copy of RestTemplate Post Request with JSON](https://www.baeldung.com/spring-resttemplate-post-json-test)
### NOTE:
This module is closed and should **not** be used to store the code
for any further articles.