Help Generate the application by using Spring Initializr

Bruno Matias 0 Reputation points
2025-03-10T16:43:14.23+00:00

the following command line on my terminald doesn t work

"curl https://start.spring.io/starter.tgz -d type=maven-project -d dependencies=web,data-jpa,mysql -d baseDir=azure-spring-workshop -d bootVersion=3.1.5.RELEASE -d javaVersion=17 | tar -xzvf -"

i got a error on the -d

this is asked to do on the Get started with Java on Azure

  1. Deploy a Spring Boot app to Azure App Service course
Azure Spring Apps
Azure Spring Apps
An Azure platform as a service for running Spring Boot applications at cloud scale. Previously known as Azure Spring Cloud.
134 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Kyle Burns 326 Reputation points Microsoft Employee
    2025-04-30T13:55:35.54+00:00

    Hi Bruno. I did some looking and it appears that the Spring Boot version used in the example is no longer available for download. I was able to specify a more recent version and successfully complete the step. Here is how I modified the command:
    curl https://start.spring.io/starter.tgz -d type=maven-project -d dependencies=web,data-jpa,mysql -d baseDir=azure-spring-workshop -d bootVersion=3.4.3 -d javaVersion=17 | tar -xzvf -

    Hope this helps!

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.