[BAEL-19366] REST move 3
This commit is contained in:
parent
bae6af78d1
commit
8e4cffdddc
6
pom.xml
6
pom.xml
|
@ -799,7 +799,7 @@
|
||||||
<module>spring-rest</module>
|
<module>spring-rest</module>
|
||||||
<module>spring-rest-angular</module>
|
<module>spring-rest-angular</module>
|
||||||
<module>spring-rest-compress</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-hal-browser</module>
|
||||||
<module>spring-rest-query-language</module>
|
<module>spring-rest-query-language</module>
|
||||||
<module>spring-rest-shell</module>
|
<module>spring-rest-shell</module>
|
||||||
|
@ -981,7 +981,7 @@
|
||||||
<module>spring-rest</module>
|
<module>spring-rest</module>
|
||||||
<module>spring-rest-angular</module>
|
<module>spring-rest-angular</module>
|
||||||
<module>spring-rest-compress</module>
|
<module>spring-rest-compress</module>
|
||||||
<module>spring-rest-full</module>
|
<module>spring-rest-testing</module>
|
||||||
<module>spring-rest-simple</module>
|
<module>spring-rest-simple</module>
|
||||||
<module>spring-resttemplate</module>
|
<module>spring-resttemplate</module>
|
||||||
<module>spring-security-acl</module>
|
<module>spring-security-acl</module>
|
||||||
|
@ -1538,7 +1538,7 @@
|
||||||
<module>spring-rest</module>
|
<module>spring-rest</module>
|
||||||
<module>spring-rest-angular</module>
|
<module>spring-rest-angular</module>
|
||||||
<module>spring-rest-compress</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-hal-browser</module>
|
||||||
<module>spring-rest-query-language</module>
|
<module>spring-rest-query-language</module>
|
||||||
<module>spring-rest-shell</module>
|
<module>spring-rest-shell</module>
|
||||||
|
|
|
@ -9,4 +9,9 @@ This module contains articles about REST APIs in Spring
|
||||||
- [Spring RequestMapping](https://www.baeldung.com/spring-requestmapping)
|
- [Spring RequestMapping](https://www.baeldung.com/spring-requestmapping)
|
||||||
- [Spring and Apache FileUpload](https://www.baeldung.com/spring-apache-file-upload)
|
- [Spring and Apache FileUpload](https://www.baeldung.com/spring-apache-file-upload)
|
||||||
- [Test a REST API with curl](https://www.baeldung.com/curl-rest)
|
- [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.
|
|
@ -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
|
### Courses
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@ The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
|
||||||
mvn clean install
|
mvn clean install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
### Set up MySQL
|
### Set up MySQL
|
||||||
```
|
```
|
||||||
mysql -u root -p
|
mysql -u root -p
|
|
@ -2,9 +2,9 @@
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>spring-rest-full</artifactId>
|
<artifactId>spring-rest-testing</artifactId>
|
||||||
<version>0.1-SNAPSHOT</version>
|
<version>0.1-SNAPSHOT</version>
|
||||||
<name>spring-rest-full</name>
|
<name>spring-rest-testing</name>
|
||||||
<packaging>war</packaging>
|
<packaging>war</packaging>
|
||||||
|
|
||||||
<parent>
|
<parent>
|
|
@ -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)
|
- [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)
|
- [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)
|
- [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.
|
||||||
|
|
Loading…
Reference in New Issue