Рубрики
Без рубрики

Spring Initializr CLI

Вот простой способ начать использовать spring.start.io из CLI Simple helloworld web с помощью… Помеченный как java, spring.

Вот простой способ начать использовать spring.start.io из CLI

Простая сеть helloworld с gradle

curl https://start.spring.io/starter.zip \                                                                          
    -d type=gradle-project 
    -d dependencies=web \
    -d name=helloworld \
    -d artifactId=helloworld \
    -o helloworld.zip
unzip helloworld.zip

Добавление зависимостей и дополнительных опций

curl https://start.spring.io/starter.zip \
  -d type=gradle-project \
  -d javaVersion=11 \
  -d dependencies=web,native,data-rest \
  -d applicationName=NativeWebApp \
  -d description='Web app with data rest and Native support' \
  -d artifactId=nativeweb \
  -d packageName=com.test.web \
  -d baseDir=nativeweb \
  -o nativeweb.zip
unzip nativeweb.zip

Как найти варианты

curl  https://start.spring.io

Оригинал: “https://dev.to/shinusuresh/spring-initializr-cli-3o7m”