[BAEL-17488] - README descriptions 4 (#7830)

* [BAEL-17488] - README descriptions 4

* [BAEL-17488] - README descriptions 4

* minor changes
This commit is contained in:
Sam Millington 2019-09-20 15:08:28 +01:00 committed by Josh Cummings
parent 87e98c9085
commit 8acac28de3
10 changed files with 50 additions and 11 deletions

View File

@ -1,3 +1,7 @@
## Spring Boot Admin
This module contains articles about Spring Boot Admin
## 1. Spring Boot Admin Server
* mvn clean install

View File

@ -1,2 +1,6 @@
## Spring Boot Angular Ecommerce
This module contains articles about Spring Boot with Angular in regards to ecommerce applications.
### Relevant Articles:
- [A Simple E-Commerce Implementation with Spring](https://www.baeldung.com/spring-angular-ecommerce)

View File

@ -1,3 +1,7 @@
## Spring Boot Angular
This module contains articles about Spring Boot with Angular
### Relevant Articles:
- [Building a Web Application with Spring Boot and Angular](https://www.baeldung.com/spring-boot-angular-web)

View File

@ -1,3 +1,7 @@
## Spring Boot Auto Configuration
This module contains articles about Spring Boot Auto Configuration
### The Course
The "REST With Spring" Classes: http://bit.ly/restwithspring

View File

@ -1,3 +1,7 @@
## Spring Boot Bootstrap
This module contains articles about bootstrapping Spring Boot applications.
### Relevant Articles:
- [Spring Boot Tutorial Bootstrap a Simple Application](http://www.baeldung.com/spring-boot-start)
- [Thin JARs with Spring Boot](http://www.baeldung.com/spring-boot-thin-jar)

View File

@ -1,18 +1,26 @@
Example for the Article on Camel API with SpringBoot
## Spring Boot Camel
to start up, run:
mvn spring-boot:run
This module contains articles about Spring Boot with Apache Camel
### Example for the Article on Camel API with SpringBoot
To start, run:
`mvn spring-boot:run`
them, do a POST http request to:
http://localhost:8080/camel/api/bean
Then, make a POST http request to:
with the HEADER: Content-Type: application/json,
`http://localhost:8080/camel/api/bean`
and a BODY Payload like {"id": 1,"name": "World"}
Include the HEADER: Content-Type: application/json,
and we will get a return code of 201 and the response: Hello, World - if the transform() method from Application class is uncommented and the process() method is commented
and a BODY Payload like:
or return code of 201 and the response: {"id": 10,"name": "Hello, World"} - if the transform() method from Application class is commented and the process() method is uncommented
`{"id": 1,"name": "World"}`
We will get a return code of 201 and the response: `Hello, World` - if the transform() method from Application class is uncommented and the process() method is commented
or return code of 201 and the response: `{"id": 10,"name": "Hello, World"}` - if the transform() method from Application class is commented and the process() method is uncommented
## Relevant articles:

View File

@ -1,6 +1,6 @@
=========
## Spring Boot CLI
This module contains articles about Spring Boot CLI
### Relevant Articles:
- [Introduction to Spring Boot CLI](http://www.baeldung.com/spring-boot-cli)

View File

@ -1,3 +1,7 @@
## Spring Boot Client
This module contains articles about Spring Boot Clients
### The Course
The "REST With Spring" Classes: http://bit.ly/restwithspring

View File

@ -1,3 +1,7 @@
## Spring boot CRUD
This module contains articles about Spring Boot CRUD Operations
### Relevant Articles:
- [Spring Boot CRUD Application with Thymeleaf](https://www.baeldung.com/spring-boot-crud-thymeleaf)
- [Using a Spring Boot Application as a Dependency](https://www.baeldung.com/spring-boot-dependency)

View File

@ -1,3 +1,6 @@
## Spring Boot Context Fluent
This module contains articles about Spring Boot Fluent Builder
### Relevant Articles: