44

Getting started with GraphQL Java

 5 years ago
source link: https://www.tuicool.com/articles/hit/VVZzE3Q
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

OOne of the best things about GraphQL is that it can be implemented in any language. Today let’s take a look at Java server implementation for GraphQL. Let’s use Maven and assume that we already have set up the project structure. What next?

Dependencies

To run GraphQL in your Java project you only need one library which is GraphQL Java implementation. However, there are a couple of libs you might find useful when using GraphQL Java:

  • Spring Boot - GraphQL Java Spring and Spring Boot integration that will handle any HTTP related tasks, expose the GraphQL service on the /graphql endpoint of your app and accept POST requests containing your GraphQL payload.
  • GraphQL Java Tools - this library allows you to use the GraphQL SDL to build your graphql-java schema.
  • GraphQL Java Servlet - implementation of GraphQL Java Servlet including support for libraries like Relay.js, Apollo etc. and wraps the Java implementation of GraphQL provided by GraphQL Java.

So add dependencies you need to Project Object Model file (pom.xml): dependencies.png

Define the schema

GraphQL Schema is the centerpiece of any GraphQL implementation so we definitely need one before going any further. To make it easier to understand the operation that a server can perform GraphQL defined a universal schema syntax know as SDL (Schema Definition Language).

The SDL defines the elements of your project like:

  • type (the most basic GraphQL schema components): type.png

  • query (asking the server for the data) query.png

  • mutation (manipulating the data): mutation.png

The fastest way to define your schema is to useGraphQL Editor. It allows you to define your schema traditionally (code) or shape it from visual nodes. Vfiq6vI.png!web

Server

There plenty of servlet containers to choose from, both open source and commercial, so just pick the one you feel comfortable with. Let’s use Jetty for our example and implement it via a Maven Plugins : I3yqQv2.png!web

And you are almost there, the next steps are:

  • adding some more basic server configurations like right Java version or servlet specification
  • creating GraphQLEndpoint class for exposing your API
  • defining resolvers

If you want to read more details about GraphQL Java implementation to take a look at Bojan’s tutorial regarding setting up GraphQL Java server on https://www.howtographql.com/


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK