Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #1

Open
wants to merge 55 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
5a6f176
Handle creating newEmployee messages when there is only one page
gregturn Apr 25, 2016
ce17277
Upgrade to Spring Boot 1.3.4.RELEASE
gregturn May 6, 2016
78fe58c
Upgrade to Spring Boot 1.3.5.RELEASE
gregturn May 10, 2016
686e717
Upgrade frontend-maven-plugin, node, and npm
gregturn May 31, 2016
4bb6722
Upgrade tutorial
gregturn Sep 23, 2016
79f9efa
migrate to 15.3.2 change React.findDOMNode to ReactDOM.findDOMNode
Sep 26, 2016
88e47bf
Upgrade to Spring Boot 1.4.1.RELEASE
Sep 26, 2016
39441bc
Updated path to javascript files
Sep 30, 2016
f395a53
Resolves #31
gregturn Sep 30, 2016
14f7cd1
Fix other relocated JS links
gregturn Sep 30, 2016
77006d2
Upgrade to Spring Boot 1.4.2.RELEASE
gregturn Nov 8, 2016
ed89009
Upgrade to babel 6 + Spring Boot 1.4.2.RELEASE
gregturn Nov 8, 2016
083418f
Fix typo in README.adoc (#38)
senk Jan 7, 2017
49834e8
Changed simple quotes to double quotes in cURL commands (#39)
javalisson Jan 24, 2017
42e5a93
Upgrade to Spring Boot 1.5.1.RELEASE
gregturn Jan 31, 2017
9b0ce9d
added missing dependency "rest@^1.3.1" and corrected if else statemen…
kopax Feb 3, 2017
f8dcfa1
correct when is undefined (#34)
L3ARNING2B Feb 10, 2017
67efc89
Revert "correct when is undefined (#34)"
gregturn Feb 10, 2017
83812d1
New employee loads whether or not page size is enough.
RinatAynulin Mar 29, 2017
407ab4c
Update README.adoc to use quote marks with cURL
jamesyin96 Mar 29, 2017
6c9dcb7
Missing semicolon (#58)
sja Jul 18, 2017
3fa7b89
Obvious: fix typo in source directory declaration (#72)
bsinou Jan 3, 2018
00887eb
Fix typo in JSX link (#79)
aeoris Apr 19, 2018
ee66509
Add a little more to JavaScript setup details.
gregturn May 8, 2018
97190ad
Polishing
gregturn May 8, 2018
6a0b25e
Polishing
gregturn May 8, 2018
087f738
Upgrade to Spring Boot 1.5.12.RELEASE
gregturn May 8, 2018
312097d
Secure Manager settings by tracking logged in user and connecting to …
jpizagno May 8, 2018
31c21a2
Upgrade to Spring Boot 2.0 + Babel 7 + React 16.0 + Webpack 2
gregturn Sep 20, 2018
01e69ae
URL Cleanup (#95)
Mar 11, 2019
a31b2bf
Upgrade to Spring Boot 2.1.
gregturn Apr 22, 2019
0da4071
URL Cleanup (#98)
Apr 22, 2019
4392c13
URL Cleanup (#97)
Apr 22, 2019
1bb8861
URL Cleanup (#96)
Apr 22, 2019
f25e029
Update README.adoc (#102)
rsivan Apr 25, 2019
d957d77
fix level 0 section error and update the header
MiloBem Jul 17, 2019
c2657c7
Upgrade to Spring Boot 2.1.7.RELEASE.
gregturn Aug 8, 2019
25b87a0
Upgrade to maven wrapper 0.7.6.
gregturn Aug 8, 2019
6b328bc
Upgrade to OpenJDK 8.
gregturn Aug 8, 2019
e5965d3
Delombok code base.
gregturn Aug 8, 2019
eb2e93c
Clearly show what is and isn't included directly in the tutorial vs. …
gregturn Sep 24, 2019
5b4d3e4
Editing pass and version upgrade
Feb 13, 2020
2ce3932
docs: fix typo on basic/README.adoc
Nael-Nathanael Mar 12, 2020
0fc27e2
Merge pull request #119 from Nael-Nathanael/Nathanael/typo
Buzzardo Mar 12, 2020
a7d04e8
fixed typo
palaziv Apr 25, 2020
1fc1301
changed uppercase to lowercase
palaziv Apr 25, 2020
fb8ed20
Restructure NodeJS for better management.
srbala Jan 6, 2020
b10fed4
Polishing.
gregturn Apr 27, 2020
a9d0d67
Tweak 'npm run-script watch' to output results so Boot can pick the up.
lauriharpf Dec 30, 2019
194586e
Fix ReactDOM description.
prokopenya Apr 12, 2020
d6bd938
Polishing.
gregturn Apr 27, 2020
c175bfe
Update Maven wrappers
dsyer Apr 29, 2020
32091a2
Fixed typo in events/README.adoc
ByoungJoonIm Jul 23, 2020
909dd8c
Migrate to Jenkins for CI.
gregturn Jun 2, 2021
043a2be
Migrate to Jenkins for CI.
gregturn Jun 2, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion basic/README.adoc
Original file line number Diff line number Diff line change
@@ -99,7 +99,7 @@ include::src/main/resources/application.properties[]

== Launching the Backend

The last step needed to get a fully operational REST API off the ground is to write a `public static void main` mwethod by using Spring Boot, as follows:
The last step needed to get a fully operational REST API off the ground is to write a `public static void main` method by using Spring Boot, as follows:

.src/main/java/com/greglturnquist/payroll/ReactAndSpringDataRestApplication.java
====