[BAEL-17488] - README descriptions 4 (#7830)
* [BAEL-17488] - README descriptions 4 * [BAEL-17488] - README descriptions 4 * minor changes
This commit is contained in:
parent
87e98c9085
commit
8acac28de3
|
@ -1,3 +1,7 @@
|
|||
## Spring Boot Admin
|
||||
|
||||
This module contains articles about Spring Boot Admin
|
||||
|
||||
## 1. Spring Boot Admin Server
|
||||
|
||||
* mvn clean install
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
@ -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)
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
## Spring Boot Context Fluent
|
||||
|
||||
This module contains articles about Spring Boot Fluent Builder
|
||||
|
||||
### Relevant Articles:
|
||||
|
||||
|
|
Loading…
Reference in New Issue