<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Shinu Suresh</title>
    <description>The latest articles on DEV Community by Shinu Suresh (@shinusuresh).</description>
    <link>https://dev.to/shinusuresh</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F272402%2F2fd79ca4-9901-4783-8b9c-083b6d7b8d64.jpeg</url>
      <title>DEV Community: Shinu Suresh</title>
      <link>https://dev.to/shinusuresh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shinusuresh"/>
    <language>en</language>
    <item>
      <title>Spring Initializr CLI</title>
      <dc:creator>Shinu Suresh</dc:creator>
      <pubDate>Sat, 19 Jun 2021 18:06:16 +0000</pubDate>
      <link>https://dev.to/shinusuresh/spring-initializr-cli-3o7m</link>
      <guid>https://dev.to/shinusuresh/spring-initializr-cli-3o7m</guid>
      <description>&lt;p&gt;Here is a simple way to start using &lt;a href="https://start.spring.io/"&gt;spring.start.io&lt;/a&gt; from CLI&lt;/p&gt;

&lt;h2&gt;
  
  
  Simple helloworld web with gradle
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;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
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Adding dependencies and more options
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;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
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How to find options
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;curl  https://start.spring.io
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>java</category>
      <category>spring</category>
    </item>
  </channel>
</rss>
