Skip to content

Commit 1e7d4c9

Browse files
committed
Add text improvements
1 parent 3ae0205 commit 1e7d4c9

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/pages/tutorials/getting-started-with-spring-boot.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ id: tutorial-getting-started
55
---
66
# Getting started with Spring for GraphQL
77

8-
In this tutorial, you will create a GraphQL server in Java using [Spring for GraphQL](https://docs.spring.io/spring-graphql/reference/). It requires a little Spring and Java knowledge. While we give a brief introduction to GraphQL, the focus of this tutorial is developing a GraphQL server in Java.
8+
In this tutorial, you will create a GraphQL server in Java using [Spring for GraphQL](https://docs.spring.io/spring-graphql/reference/) in 3 minutes. It requires a little Spring and Java knowledge. While we give a brief introduction to GraphQL, the focus of this tutorial is developing a GraphQL server in Java.
99

1010
If you're looking to learn more after this tutorial, we (the maintainers) have written a book! [**GraphQL with Java and Spring**](https://leanpub.com/graphql-java) includes everything you need to know to build a production ready GraphQL service with Spring for GraphQL, the official Spring integration built on top of the GraphQL Java engine. It's available on [Leanpub](https://leanpub.com/graphql-java) and [Amazon](https://www.amazon.com/GraphQL-Java-Spring-Andreas-Marek-ebook/dp/B0C96ZYWPF/).
1111

@@ -105,11 +105,11 @@ Select:
105105

106106
- Gradle Project
107107
- Spring Boot 3
108-
- Java 17 or higher (Java 17 is the baseline version for Spring Boot 3)
108+
- Java 17 or higher
109109

110110
For the project metadata, use:
111111

112-
- Group: `com.graphql-java.tutorial`
112+
- Group: `com.graphqljava.tutorial`
113113
- Artifact: `bookDetails`
114114

115115
For dependencies, select:
@@ -124,8 +124,6 @@ Spring for GraphQL adds many useful features including loading schema files, ini
124124

125125
## Schema
126126

127-
Create a directory `src/main/resources/graphql`.
128-
129127
Add a new file `schema.graphqls` to `src/main/resources/graphql` with the following content:
130128

131129
```graphql
@@ -294,7 +292,7 @@ With the help of Spring for GraphQL features, we were able to achieve this with
294292

295293
## Further reading
296294
### Book
297-
If you want to learn more, we have written a book! [**GraphQL with Java and Spring**](https://leanpub.com/graphql-java) includes everything you need to know to build a production ready GraphQL service with Spring for GraphQL and GraphQL Java.
295+
If you want to learn more, we (the maintainers) have written a book! [**GraphQL with Java and Spring**](https://leanpub.com/graphql-java) includes everything you need to know to build a production ready GraphQL service with Spring for GraphQL and GraphQL Java.
298296

299297
Learn first-hand from the founder of GraphQL Java and co-author of Spring for GraphQL. The book is suitable for beginners and also includes advanced topics for intermediate readers. The book is available on [Leanpub](https://leanpub.com/graphql-java) and [Amazon](https://www.amazon.com/GraphQL-Java-Spring-Andreas-Marek-ebook/dp/B0C96ZYWPF/).
300298

0 commit comments

Comments
 (0)