Questions tagged [spring-initializr]

Spring Initializr provides an extensible API to generate JVM-based projects. An instance is available at https://start.spring.io

Spring Initializr provides an extensible API to generate JVM-based projects with implementations for several common concepts:

  • Basic language generation for Java, Kotlin and Groovy.
  • Build system abstraction with implementations for Apache Maven and Gradle.
  • .gitignore support.
  • Several hook-points for custom resources generations.

A concrete instance that uses the library can be found at https://start.spring.io.

60 questions
96
votes
17 answers

Intellij Spring Initializr not available

I'm using Intellij IDE to code spring Boot. Spring Initializr was not available for me in the new project option as in. http://blog.jetbrains.com/idea/2015/03/develop-spring-boot-applications-more-productively-with-intellij-idea-14-1/ Below you can…
Faraj Farook
  • 14,385
  • 16
  • 71
  • 97
17
votes
4 answers

Spring initializr project results in Unsupported class file major version 64

When I create a new project using the Spring initializr Gradle won't build the project. I use IntelliJ IDEA. The error message is * Exception is: org.gradle.cache.CacheOpenException: Could not open init generic class cache for initialization script…
Julius Babies
  • 955
  • 3
  • 6
  • 22
5
votes
2 answers

mvnw.cmd for demo spring-boot project not working in windows

I generated a simple demo project (2.3.0 version) from Spring Initializr to my windows 8.1 OS and below is the basic structure C:. └───src ├───main │ ├───java │ │ └───com │ │ └───example │ │ └───demo …
Sachin
  • 2,087
  • 16
  • 22
3
votes
1 answer

Issues with Spring Initializr project in IntelliJ

I created a project using Spring Initializr. When I open it in IntelliJ I see this error in the build: java.lang.RuntimeException: org.codehaus.plexus.component.repository.exception.ComponentLookupException: com.google.inject.ProvisionException:…
runnerpaul
  • 5,942
  • 8
  • 49
  • 118
3
votes
1 answer

Can not to import SpringBoot Project into Eclipse IDE

I have tried to create a new SpringBoot Project by using the Spring Initializr. I choose Java version (language as well), Spring Boot version and all required dependencies. Download the zip file (and unzip it), and after that I ask IDE (I use…
Mikhail
  • 195
  • 2
  • 12
2
votes
1 answer

How do I add a Spring Initializr dependency (eg Microsoft Azure) after the project is created?

I'm trying to add the dependencies azure-support and azure-storage to an existing java spring project in IntelliJ. I know how to do it using Spring Initializr when starting a new project: then I can add the dependency to the project before creating…
mb569
  • 101
  • 1
  • 6
2
votes
1 answer

Use .yml on spring config/resources files by default on Intellij

I'm adding a new Project on Intellij using Spring Initialzr. So when my project is created, I have the application file already created. But it has the ".properties" extension and I prefer the YAML format. Is there any way to configure Intellij to…
1
vote
1 answer

Gradle build is getting failed when i tried to build a spring boot project

A problem occurred configuring root project 'Task_Manager '. Could not resolve all files for configuration ':classpath'. Could not resolve org.springframework.boot:spring-boot-gradle-plugin:3.1.1. Required by: project : >…
1
vote
1 answer

while initialize the spring boot project IntelliJ idea it is asking to select the dependency

[] 1I am new to spring-boot. After installing the Spring Initializer plugin, I started to create my very first Spring Boot project. While initializing the spring boot project, IntelliJ IDEA asks to select the dependency. can anyone help to solve…
1
vote
2 answers

getting springboot to support groovy 4.0 (apache packaging) | needed 3.0.0-M2 and more

spring-boot > 2.3.1 will grab groovy-bom from codehaus instead of org.apache.groovy packaging, even if you declare org.apache.groovy dependendices I found this means spring-boot > 2.3.1 will not build groovy 4.0 even spring initializr bakes this…
Bob Makowski
  • 305
  • 2
  • 8
1
vote
0 answers

Unresolved plugin: 'org.apache.maven.plugins:maven-clean-plugin:3.1.0'

I am new in IntelliJ, Maven, and Spring Initializr. I open the unzipped file in IntelliJ. Then, from the right side, I go to the Project/Lifecycle and then click the install. After I while, I received an error of "Unresolved plugin:…
Dave PH
  • 33
  • 5
1
vote
2 answers

Spring application.properties is grayed out with Spring Initilizr

I am new to spring and trying to use Spring Initilizr for my project. I am using the code that was generated by this tool after adding dependencies for 'Spring Web' and 'Spring Data Redis'. When I open the generated code in IntelliJ and try to edit…
1
vote
1 answer

IntelliJ : how to verify log4j2.xml is on the classpath?

I'm working on a spring boot/maven project that I created with SpringIntializr. If I add all the necessary dependencies to my pom, and if I add my log4j2.xml to MyApp/src/main/resources, and if after a build I see my log4j2.xml file in…
badperson
  • 1,554
  • 3
  • 19
  • 41
1
vote
1 answer

Spring boot application shut down after application run

I try to create Spring boot application using spring initializer. I just created new app using dependencies org.springframework.boot
Moeezalikhan
  • 41
  • 3
  • 10
1
vote
1 answer

spring initializr: Cannot import org.slf4j.LoggerFactory for Gradle projects

I'm trying to learn how to build "Spring Web" web-applications using IntelliJ IDEA, and I'm encountering a very frustrating issue when I try to create a new project using "Spring Initializr". For some reason when I choose to create a "Gradle…
user1751825
  • 4,029
  • 1
  • 28
  • 58
1
2 3 4