question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Start Project using Spring boot

See original GitHub issue

When I import dependencies, my project not finding annotations, like @GraphQLAp, how I setup it?

<dependencies>
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <!--Will be optional as of 0.0.2-->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-websocket</artifactId>
  </dependency>
  <dependency>
    <groupId>io.leangen.graphql</groupId>
    <artifactId>graphiql-spring-boot-starter</artifactId>
    <version>0.0.1</version>
  </dependency>
  <!--Will be implicit as of 0.0.2-->
  <dependency>
    <groupId>io.leangen.graphql</groupId>
    <artifactId>spqr</artifactId>
    <version>0.9.7</version>
  </dependency>
</dependencies>

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
BaldyLockscommented, Sep 5, 2018

Yeah i saw. I thought it was updated when 0.0.2 was released. Thanks for pointing it out.

0reactions
rafaelrenanpachecocommented, Sep 5, 2018

The readme is causing this confusion. The maven badge is set with 0.0.2, which works with spqr 0.9.8, but the dependency example shows spqr 0.9.7.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Getting Started | Building an Application with Spring Boot
This guide is meant to give you a quick taste of Spring Boot. If you want to create your own Spring Boot-based project,...
Read more >
Spring Boot Application - Javatpoint
Following are the steps to create a simple Spring Boot Project. Step 1: Open the Spring initializr https://start.spring.io. Step 2: Provide the Group...
Read more >
Tutorial: Create your first Spring application | IntelliJ IDEA ...
Create a new Spring Boot project · From the main menu, select File | New | Project. · In the left pane of...
Read more >
Spring Boot Tutorial - Bootstrap a Simple App - Baeldung
Spring Boot is an opinionated addition to the Spring platform, focused on convention over configuration — highly useful for getting started ...
Read more >
Creating Spring Boot Project: Eclipse and Maven - DZone Java
The last option is to create the project manually. In Eclipse, start with File > New > MavenProject. Choose Create a simple project,...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found