Skip to content

Commit daedbdf

Browse files
Fix JDK intallation links doc., .gitignore, playground url
1 parent 3110676 commit daedbdf

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ gradle-app.setting
3737
.gradletasknamecache
3838
.project
3939
.classpath
40+
gradle.properties

lessons/day_01/java/src/main/resources/application.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ spring.h2.console.enabled=true
77
spring.datasource.name=graphQL
88

99
spring.graphql.graphiql.enabled=true
10+
spring.graphql.graphiql.path=/playground

setup/java.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ The [Spring Boot GraphQL Starter](https://github.com/graphql-java-kickstart/grap
1212

1313
Installers are currently available for Windows®, Linux®, and macOS® JDK and JRE packages. Installation steps are covered in the following sections:
1414

15-
* [Windows MSI installer packages](https://adoptopenjdk.net/installation.html?variant=openjdk8&jvmVariant=hotspot#windows-msi)
16-
* [macOS PKG installer packages](https://adoptopenjdk.net/installation.html?variant=openjdk8&jvmVariant=hotspot#macos-pkg)
17-
* [Linux RPM and DEB installer packages](https://adoptopenjdk.net/installation.html?variant=openjdk8&jvmVariant=hotspot#linux-pkg)
15+
* [Main page command line installation](https://adoptium.net/es/installation/)
16+
* [Windows MSI installer packages](https://adoptium.net/es/installation/windows/)
17+
* [macOS PKG installer packages](https://adoptium.net/es/installation/macOS/)
18+
* [Linux RPM and DEB installer packages](https://adoptium.net/es/installation/linux/)
1819
* [Alternatively if you want to use multiples JDK and multiple tools versions administered you can use SDKMAN!](https://sdkman.io/)
1920

2021
### Project Plugins
@@ -57,7 +58,7 @@ As a result, developers can get up and running with a Gradle project quickly wit
5758
### Run the app using Gradle
5859
1. Open a terminal
5960
2. go to the java exercise directory
60-
3. run `./gradle run `(linux) or `gradle.bat run`(windows) to start the GraphQL server.
61+
3. run `./gradlew bootRun `(linux) or `gradlew.bat bootRun`(windows) to start the GraphQL server.
6162

6263
### Using the IDE (IntelliJ IDEA)
6364

@@ -68,7 +69,7 @@ As a result, developers can get up and running with a Gradle project quickly wit
6869

6970
## Testing GraphQL queries
7071

71-
To display a GUI for editing and testing GraphQL queries and mutations against the server you can open your browser and type [http://localhost:8080/graphiql](http://localhost:8080/graphiql)
72+
To display a GUI for editing and testing GraphQL queries and mutations against the server you can open your browser and type [http://localhost:8080/playground](http://localhost:8080/playground)
7273

7374
## Inspect the Database
7475

0 commit comments

Comments
 (0)