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

Use the Initializr web site #117

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
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
11 changes: 2 additions & 9 deletions simple/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,7 @@ This will be quite easy if we take advantage of the autoconfiguration features i
== Creating a New Project

First we need to create a Spring Boot application, which can be done in a number of ways.
The easiest is to go to https://start.spring.io and generate an empty project (choosing the "Web" dependency as starting points).
Equivalently do this on the command line:

[source]
----
$ mkdir ui && cd ui
$ curl https://start.spring.io/starter.tgz -d style=web -d name=simple | tar -xzvf -
----
The easiest is to go to https://start.spring.io and generate a new project, choosing the "`Spring Web`" dependency.

You can then import that project into your favourite IDE (it's a normal Maven Java project by default), or just work with the files and "mvn" on the command line.

Expand Down Expand Up @@ -140,7 +133,7 @@ If you stay logged into Facebook, you won't have to re-authenticate with this lo

TIP: if you are working through this section with the sample application, be sure to clear your browser cache of cookies and HTTP Basic credentials. In Chrome the best way to do that for a single server is to open a new incognito window.

****
****
It is safe to grant access to this sample because only the app running locally can use the tokens and the scope it asks for is limited.
Be aware of what you are approving when you log into apps like this though: they might ask for permission to do more than you are comfortable with (e.g. they might ask for permission to change your personal data, which would be unlikely to be in your interest).
****
Expand Down