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
0
votes
1 answer

How can i customize the spring initializr to provide the same functionality as start spring?

I am trying to build my own version of start.spring.io which can provide the starter files to user by fetching the dependency from my own nexus repository. Can someone show the sample application for the same. https://start.spring.io/
0
votes
1 answer

Does spring retry dependency covered under spring batch in spring initializr?

Trying to add Retry dependency in spring initializr, but only batch is showed? Does it mean need to add spring-batch and use retry?
J.J. Beam
  • 2,612
  • 2
  • 26
  • 55
0
votes
1 answer

Do I need hystrix dependency when I need @Retry and use spring initializr?

I gonna use @Retry in my Spring Boot MVC application while storing a data to DB with optimistic locking via @Version. I gonna retry multiple times when OptimisticLockException exception happens. And fall down after 100 times (for my logic it's a…
J.J. Beam
  • 2,612
  • 2
  • 26
  • 55
0
votes
1 answer

Do I need mysql dependency in Spring Initializr if I gonna use mysql in separate docker container?

I gonna create Spring Boot MVC / JPA / Data CRUD project - simple REST service. Put in container Store some data in mysql DB. Put in a separate container use docker compose to up 1 & 2 together Use a circuit breaker pattern (Hystrix?): @Retry &…
J.J. Beam
  • 2,612
  • 2
  • 26
  • 55
0
votes
1 answer

Is there a way to generate application properties when creating a Spring Boot project?

I'm planning to run our own Spring Initializr instance. Is there a way to have a set of application properties get written (to application.yml) when a certain option is chosen, ideally in a separate section for each of a set of predefined profiles?…
0
votes
1 answer

Unable to run Spring Initializr using 2.2.1.BUILD-SNAPSHOT on IntelliJ

Trying to brushup on my j2ee so downloaded a Spring initializr zipped folder and imported in IntelliJ. I am getting below error while trying to run it as Java Application. 2019-11-04 12:50:35.702 INFO 5900 --- [ main]…
Gendaful
  • 5,522
  • 11
  • 57
  • 76
0
votes
0 answers

What are the requirements for gradle.kts generated by spring initializr?

I modified the build.gradle file of the newly created gradle project named build.gradle.kts, and then copied the build.gradle.kts content of the demo project generated by spring initializr, and then build, this file reported a lot of errors, but…
0
votes
1 answer

Spring Initializr to create WAR for tomcat?

I would like to use the Spring Initializr to create WAR for tomcat... Our DevOps are still not used to the idea of running java as a standalone and would like to have the application as a WAR in tomcat I was able to produce a project but it seems…
JavaSheriff
  • 7,074
  • 20
  • 89
  • 159
0
votes
0 answers

Spring Initializr Vanilla Project - Caused by: java.lang.AbstractMethodError:

I created a bare-bones Spring Initializr project, but when I try to run it from the command line java -jar demo-0.0.1-SNAPSHOT.jar I get the following error: java -jar demo-0.0.1-SNAPSHOT.jar Exception in thread "main"…
GustavoT
  • 31
  • 1
  • 1
  • 3
0
votes
1 answer

Spring initializr project: Roadmap?

We want to run our own instance of the Spring Initializr and enhance it with own modules. However there is still no stable version available: Spring Inititializr's current version is still 1.0.0.BUILD-SNAPSHOT and it is not available on Maven…
-1
votes
0 answers

Eclipse showing "Maven Configuration Problem: Unknown" not resolved by adding maven jar plugin

I'm facing this Eclipse showing "Maven Configuration Problem: Unknown" This answer claims that adding maven plugin will solve it, but even after adding maven plugin and adding the package as war the error is not going.
-1
votes
1 answer

What is the solution for "Error message "could not connect to server in Spring Initilizr?

https://github.com/spring-io/start.spring.io/issues/990 When configuring a project I encountered a weird error. I don't know the suggested way of naming project but since it isn't the artifact name I though of naming it more 'commercially' using…
-1
votes
1 answer

Spring Initializr not able to load in Google Chrome But its Open in Microsoft Edge

Spring Initializr not able to load in Google Chrome But its Open in Microsoft Edge In Google Chrome : In Microsoft Edge : Can you suggest me why spring initializr not opening in google chrome.
Lova Chittumuri
  • 2,994
  • 1
  • 30
  • 33
-2
votes
1 answer

Converting maven to gradle of Spring Initializr

Spring Initializr is a open source project , which can be downloaded/cloned from github to run our own spring initializr. however the build of the project is maven. I want to convert it to gradle. Can anyone Help ? I tried it with gradle init and…
-3
votes
1 answer

Inherit all the configuration from Spring Initializr when creating my own instance

I am trying to set up my own instance of the Spring Initializr. I want to add more libraries and starters for internal use. So far I've followed Spring's documentation and set up an application that is able to provide the dependencies I add there.…
renke
  • 1,180
  • 2
  • 12
  • 27
1 2 3
4