Start Project using Spring boot
See original GitHub issueWhen 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:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yeah i saw. I thought it was updated when 0.0.2 was released. Thanks for pointing it out.
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.