forked from eugenp/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request eugenp#7843 from sjmillington/readme-10
[BAEL-17494] - Added readme descriptions 10
- Loading branch information
Showing
10 changed files
with
58 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
## Spring MVC Simple 2 | ||
|
||
This module contains articles about Spring MVC | ||
|
||
## Relevant articles: | ||
- [How to Read HTTP Headers in Spring REST Controllers](https://www.baeldung.com/spring-rest-http-headers) | ||
- More articles: [[<-- prev]](/spring-mvc-simple) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
## Spring MVC Velocity | ||
|
||
This module contains articles about Spring MVC with Velocity | ||
|
||
### Relevant Articles: | ||
- [Quick Guide to Spring MVC with Velocity](http://www.baeldung.com/spring-mvc-with-velocity) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
========= | ||
## Spring MVC WebFlow | ||
|
||
## Spring MVC with Spring Web Flow | ||
|
||
###The Course | ||
This module contains articles about Spring MVC Web Flow | ||
|
||
### Relevant Articles: | ||
- | ||
|
||
- [Guide to Spring Web Flow](http://www.baeldung.com/spring-web-flow) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
## Spring Protocol Buffers | ||
|
||
This module contains articles about Spring with Protocol Buffers | ||
|
||
### Relevant Articles: | ||
- [Spring REST API with Protocol Buffers](http://www.baeldung.com/spring-rest-api-with-protocol-buffers) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
========================================================================= | ||
## Spring Quartz | ||
|
||
## Scheduling in Spring with Quartz Example Project | ||
This module contains articles about Spring with Quartz | ||
|
||
### Relevant Articles: | ||
- [Scheduling in Spring with Quartz](http://www.baeldung.com/spring-quartz-schedule) | ||
|
||
|
||
## #Scheduling in Spring with Quartz Example Project | ||
This is the first example where we configure a basic scheduler. | ||
|
||
##### Spring boot application, Main class | ||
### | ||
``` | ||
org.baeldung.springquartz.SpringQuartzApp | ||
``` | ||
###### | ||
|
||
|
||
`org.baeldung.springquartz.SpringQuartzApp` | ||
|
||
##### Configuration in *application.properties* | ||
#### | ||
|
||
- Default: configures scheduler using Spring convenience classes: | ||
``` | ||
using.spring.schedulerFactory=true | ||
``` | ||
- To configure scheduler using Quartz API: | ||
``` | ||
using.spring.schedulerFactory=false | ||
``` | ||
|
||
### Relevant Articles: | ||
- [Scheduling in Spring with Quartz](http://www.baeldung.com/spring-quartz-schedule) | ||
`using.spring.schedulerFactory=true` | ||
|
||
- To configure scheduler using Quartz API: | ||
|
||
`using.spring.schedulerFactory=false` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## Spring Security CORS | ||
|
||
This module contains articles about Spring Security with CORS (Cross Origin Requests) | ||
|
||
## Relevant Articles | ||
|
||
- [Fixing 401s with CORS Preflights and Spring Security](https://www.baeldung.com/spring-security-cors-preflight) |