<?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: Farheen Shaikh</title>
    <description>The latest articles on DEV Community by Farheen Shaikh (@farheen_sk).</description>
    <link>https://dev.to/farheen_sk</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%2F1753373%2F145c1e5a-a6bc-436f-aedf-692cb04094f9.png</url>
      <title>DEV Community: Farheen Shaikh</title>
      <link>https://dev.to/farheen_sk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/farheen_sk"/>
    <language>en</language>
    <item>
      <title>Dev.to 7-Series: How to get started on writing code</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Sun, 11 Aug 2024 02:20:00 +0000</pubDate>
      <link>https://dev.to/farheen_sk/devto-7-series-how-to-get-started-on-writing-code-2iib</link>
      <guid>https://dev.to/farheen_sk/devto-7-series-how-to-get-started-on-writing-code-2iib</guid>
      <description>&lt;h2&gt;
  
  
  Practice daily by deciding study time
&lt;/h2&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Practice Practice Practice ...&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Improving coding skills requires dedication and consistent effort. You can set boundaries. Start dedicating time for learning.  &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Set 2-4 hours in a day where you can decide breakup of study material. Watching tutorial, writing code, doing testing. Playing around code is fun. You can try things on your own.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;With free online courses, documentation, communities and books - you can &lt;br&gt;
definitely start grasping coding fundamentals without spending any money.&lt;/p&gt;

&lt;p&gt;Setup you development environment and choose your favorite IDE. An integrated development environment (IDE) is a software application that helps programmers develop software code efficiently. &lt;/p&gt;

&lt;p&gt;As a new programmer use of IDE will help you lot of ways. It increases developer productivity by combining capabilities such as software editing, building, testing application.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Start writing you first "Hello World!" program.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I am going to share one tutorial. I am using Java and IntelliJ IDE to write this problem. You can use programming language and IDE of your own choice.&lt;/p&gt;

&lt;p&gt;Once you feel you ready to take challenge. I would suggest use HackerRank &lt;br&gt;
for taking up problem challenges. &lt;/p&gt;
&lt;h4&gt;
  
  
  You must follow these steps to successfully complete first tutorial.
&lt;/h4&gt;

&lt;ol&gt;
&lt;li&gt;Download and install latest Java version&lt;/li&gt;
&lt;li&gt;Set environmental variables&lt;/li&gt;
&lt;li&gt;Download and install IDE to write code&lt;/li&gt;
&lt;li&gt;Create new project &lt;/li&gt;
&lt;li&gt;Run the project&lt;/li&gt;
&lt;li&gt;Done&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;
  
  
  Congratulations... You've made it!
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;First Code Hello World and welcome, IntelliJ provides you sample code to begin&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Below is the sample code.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;package org.spring;

public class Main {
    public static void main(String[] args) {
        System.out.printf("Hello and welcome!");
        for (int i = 1; i &amp;lt;= 5; i++) {
            System.out.println("i = " + i);
        }
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;Please refer to below images attached for your reference&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7s8q8l0dg6ahjpj5s8uf.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7s8q8l0dg6ahjpj5s8uf.PNG" alt="IntelliJ images" width="800" height="428"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm8ksudkd4swh5p3tp5pf.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm8ksudkd4swh5p3tp5pf.PNG" alt="IntelliJ images" width="800" height="409"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwc8jbcmn7qzj9gm5ncej.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwc8jbcmn7qzj9gm5ncej.PNG" alt="IntelliJ images" width="800" height="426"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flmxjjfpirb623cow5jw8.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flmxjjfpirb623cow5jw8.PNG" alt="IntelliJ images" width="800" height="426"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Alright. So this was the end of this series.&lt;/p&gt;

&lt;p&gt;Hope you liked it. As I shared, useful information for those who are willing to start coding. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Thank you so much.&lt;/strong&gt; &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Dev.to 6-Series: How to get started on writing code</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Sat, 10 Aug 2024 07:20:00 +0000</pubDate>
      <link>https://dev.to/farheen_sk/devto-6-series-how-to-get-started-on-writing-code-4bo7</link>
      <guid>https://dev.to/farheen_sk/devto-6-series-how-to-get-started-on-writing-code-4bo7</guid>
      <description>&lt;h2&gt;
  
  
  Choose one programming language and study
&lt;/h2&gt;

&lt;p&gt;Deciding the programming language is really important specially when you are beginner. &lt;/p&gt;

&lt;p&gt;Having said that, the key to learning anything is to start. It might seem difficult. There are some of the most popular and beginner-friendly options to consider. Though, C, C++, Java and Python are most popular high level programming language available.&lt;/p&gt;

&lt;p&gt;First question to ask yourself "Why I should learn to code?". When you answer this question you will know the next path.&lt;/p&gt;

&lt;p&gt;You can seek guidance from your connection, groups, friends, mentors etc. Everyone will have different opinion however, you can choose whatever works best for yourself.&lt;/p&gt;

&lt;p&gt;It will define your career goals too. &lt;/p&gt;

&lt;p&gt;Your basics should be clear to start taking career path in that programming language. It could be Python, SQL, HTML/ CSS, Javascript or Java.&lt;/p&gt;

&lt;p&gt;It's absolutely possible to teach yourself a programming language. However, it takes hard work and determination. &lt;/p&gt;

&lt;p&gt;Start small. Start by solving brainteasers, puzzles and real time problem. You can pick easy ones first.&lt;/p&gt;

&lt;p&gt;Let me know in the comments which programming language you decided to learn in upcoming years.&lt;/p&gt;

&lt;p&gt;And save this article if you are planning to learn in future.&lt;/p&gt;

&lt;p&gt;THanks!&lt;/p&gt;

</description>
      <category>programming</category>
      <category>oop</category>
      <category>news</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Dev.to 5-Series: How to get started on writing code</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Fri, 09 Aug 2024 06:07:00 +0000</pubDate>
      <link>https://dev.to/farheen_sk/devto-5-series-how-to-get-started-on-writing-code-m2</link>
      <guid>https://dev.to/farheen_sk/devto-5-series-how-to-get-started-on-writing-code-m2</guid>
      <description>&lt;h2&gt;
  
  
  Join developer community
&lt;/h2&gt;

&lt;p&gt;Join developers community forums and take a look at ongoing discussions.&lt;/p&gt;

&lt;p&gt;The StackOverFlow is the best platform to leverage and start posting your questions , you can post your answers to questions.&lt;/p&gt;

&lt;p&gt;Once you are the part of the community you get exposure to other senior developers in the group. You can start participating in various events if you like.&lt;/p&gt;

&lt;p&gt;The community group will help you enhance and guide you to help with problems you are facing.&lt;/p&gt;

&lt;p&gt;Be respectful and follow the guidelines before communicating to someone. As beginner we must follow the appropriate format and provide context.&lt;/p&gt;

&lt;p&gt;I'd suggest start you own project and once you command you can contribute to open source too.&lt;/p&gt;

&lt;p&gt;The key is to set clear goals for learning. There are various DEV community even can be found on LinkedIn site.&lt;/p&gt;

&lt;p&gt;First site down and give it a second thought to solve your own problem. If not, you can always seek guidance from senior as they have different perspective of looking at the problem that you do.&lt;/p&gt;

&lt;p&gt;You can benefit yourself from community. But we wise.&lt;/p&gt;

&lt;p&gt;Hope you enjoyed reading this article. If so, hit the like and keep learning. &lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>programming</category>
      <category>oop</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Dev.to 4-Series: How to get started on writing code</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Thu, 08 Aug 2024 07:55:00 +0000</pubDate>
      <link>https://dev.to/farheen_sk/devto-4-series-how-to-get-started-on-writing-code-1iak</link>
      <guid>https://dev.to/farheen_sk/devto-4-series-how-to-get-started-on-writing-code-1iak</guid>
      <description>&lt;h2&gt;
  
  
  Start leveraging use of free online platforms
&lt;/h2&gt;

&lt;p&gt;Websites like W3Schools, Codecademy, GeeksforGeeks have free coding tutorials. YouTube has many coding tutorial videos. &lt;/p&gt;

&lt;p&gt;As a beginner I would advice using free platforms out there. Identify resources relevant to your goals. Stick to the plan.&lt;/p&gt;

&lt;p&gt;Set 3-6 months or so depending upon your convenience. These free platforms will not only help you to learn syntax, programs but also best practices to follow, &lt;/p&gt;

&lt;p&gt;You can opt for one programming language at a time. Don't jump into parallel learning. You might feel overwhelmed. After certain period could loose interest as well.&lt;/p&gt;

&lt;p&gt;It good to start by choosing one language and learn and gain insights in depth. I personally recommend using W3Schools. It's great platform for beginners.&lt;/p&gt;

&lt;p&gt;Hope this helps. Happy to hear feedback over comments. &lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>learning</category>
      <category>programming</category>
    </item>
    <item>
      <title>Join our unique squad today!</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Wed, 07 Aug 2024 10:20:46 +0000</pubDate>
      <link>https://dev.to/farheen_sk/join-our-unique-squad-today-4efo</link>
      <guid>https://dev.to/farheen_sk/join-our-unique-squad-today-4efo</guid>
      <description>&lt;h2&gt;
  
  
  Welcome to the Squad! &lt;a href="https://dly.to/d6J4Xfd6IaE" rel="noopener noreferrer"&gt;Join Furious Dev&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;Sharing this article to all the new members who haven't join our squad yet. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Here's why you should join us.&lt;br&gt;
&lt;a href="https://app.daily.dev/squads/fastnfurious289" rel="noopener noreferrer"&gt;Click here to know more information&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Thank you very much.&lt;/p&gt;

</description>
      <category>developer</category>
      <category>devdiscuss</category>
      <category>community</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Dev.to 3-Series: How to get started on writing code</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Wed, 07 Aug 2024 07:27:12 +0000</pubDate>
      <link>https://dev.to/farheen_sk/devto-3-series-how-to-get-started-on-writing-code-1dgc</link>
      <guid>https://dev.to/farheen_sk/devto-3-series-how-to-get-started-on-writing-code-1dgc</guid>
      <description>&lt;h2&gt;
  
  
  Set realistic goals, interest and time commitments
&lt;/h2&gt;

&lt;p&gt;It is necessary to set your goals and time commitments to achieve those goals. If you have decided to start writing code. You must know fundamentals and once it is cleared.&lt;/p&gt;

&lt;p&gt;You can now take next step as to set realistic expectation. Start by taking out 1 hour initially. You can try this for one month if works for you. It's on individual to decide how long in a day they take time to study.&lt;/p&gt;

&lt;p&gt;Over a period of time you will develop skills and ultimately start solving problems. Though, this would be the least priority thing but trust me once you know data structures and algorithm well. You start getting comfortable writing code you will be confident.&lt;/p&gt;

&lt;p&gt;Start taking notes and revise it after two weeks.&lt;/p&gt;

&lt;p&gt;Hope this article helps, I am looking forward for your feedback. As this is my first series.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>basic</category>
      <category>learning</category>
    </item>
    <item>
      <title>Dev.to 2-Series: How to get started on writing code</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Wed, 07 Aug 2024 06:57:42 +0000</pubDate>
      <link>https://dev.to/farheen_sk/devto-2-series-how-to-get-started-on-writing-code-534p</link>
      <guid>https://dev.to/farheen_sk/devto-2-series-how-to-get-started-on-writing-code-534p</guid>
      <description>&lt;h2&gt;
  
  
  Know fundamentals of the programming
&lt;/h2&gt;

&lt;p&gt;Welcome to another chapter of this series...You must know the fundamentals of the programming. Read and understand the various concepts. As, these concepts are similar across various programming languages, such as Python, C++, C, and Java.&lt;/p&gt;

&lt;p&gt;As a beginner Some of these concepts include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Variable declaration&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Basic syntax&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Data types and structures&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Flow control structures&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Iteration (Loops)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Functional programming &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Debugging&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are various courses and online material available to gain knowledge on these topics.&lt;/p&gt;

&lt;p&gt;Every programming language has a syntax and we must learn. Different data types refer to the classification of data. The control structure are sequential, selection and iteration type. It defines execution of control flow statements. Loop are the statements which gets executed based on defined criteria.&lt;/p&gt;

&lt;p&gt;Functions are containers that take in a set of inputs and return an output. It is not required for a function to return a value. Pure functions will always give the same result for the same set of inputs.&lt;/p&gt;

&lt;p&gt;Debugging is a skill which involves detecting and removing potential errors. It is also way with which we can go through programming statements line by line to make sure the program is working as expected.&lt;/p&gt;

&lt;p&gt;Remember to write clean and neat code. &lt;/p&gt;

&lt;p&gt;I hope you liked this article. Thanks for reading. &lt;/p&gt;

&lt;p&gt;Share with your friends, fresher, even who is new to programming field and wants to get started. :) &lt;/p&gt;

</description>
      <category>learning</category>
      <category>tutorial</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Dev.to 1-Series: How to get started on writing code</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Mon, 05 Aug 2024 10:02:31 +0000</pubDate>
      <link>https://dev.to/farheen_sk/devto-1-series-how-to-get-started-on-writing-code-4jmh</link>
      <guid>https://dev.to/farheen_sk/devto-1-series-how-to-get-started-on-writing-code-4jmh</guid>
      <description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;Welcome to the series 1 where I will share most common guidelines for you to get started.&lt;/p&gt;




&lt;ul&gt;
&lt;li&gt;Know fundamentals of the programming &lt;/li&gt;
&lt;li&gt;Set realistic goals, interest and time commitments&lt;/li&gt;
&lt;li&gt;Start leveraging use of free online platforms &lt;/li&gt;
&lt;li&gt;Join developer community &lt;/li&gt;
&lt;li&gt;Choose one programming language and study &lt;/li&gt;
&lt;li&gt;Practice daily by deciding study time &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Maintain consistency by doing practice.&lt;/p&gt;

&lt;p&gt;Yes.&lt;/p&gt;

&lt;p&gt;You need to practice a lot by solving multiple problems.&lt;/p&gt;

&lt;p&gt;Thanks for reading!  &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Dev.to Series: How to get started on writing code</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Thu, 01 Aug 2024 07:45:33 +0000</pubDate>
      <link>https://dev.to/farheen_sk/devto-series-how-to-get-started-on-writing-code-32ap</link>
      <guid>https://dev.to/farheen_sk/devto-series-how-to-get-started-on-writing-code-32ap</guid>
      <description>&lt;h2&gt;
  
  
  Hello Everyone, Good news for you all!
&lt;/h2&gt;

&lt;p&gt;I have finally decided to make series for beginners who are wishing and willing to start writing their first code.&lt;/p&gt;

&lt;p&gt;This is for the beginners so feel free to post your questions, I'd be happy to answer. If I don't let's highlight it to our wonderful DEV community.&lt;/p&gt;

&lt;p&gt;It's good time to start when you are taking a step closer to Tech world! So stay tuned.&lt;/p&gt;

&lt;p&gt;I wish you all the very best and have a great time while reading.&lt;br&gt;
Thank you very much for taking a time to read.&lt;/p&gt;

&lt;p&gt;Have a great day!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>codenewbie</category>
      <category>testing</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Do you know about public clouds?</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Tue, 30 Jul 2024 07:48:33 +0000</pubDate>
      <link>https://dev.to/farheen_sk/do-you-know-about-public-clouds-46dp</link>
      <guid>https://dev.to/farheen_sk/do-you-know-about-public-clouds-46dp</guid>
      <description>&lt;p&gt;Hi,&lt;br&gt;
I want to learn about public cloud and it's use in enterprise.&lt;/p&gt;

&lt;p&gt;Can someone help me learn &amp;amp; understand that? Much appreciated.&lt;/p&gt;

&lt;p&gt;Is public cloud safe? How?&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>webdev</category>
      <category>development</category>
      <category>springboot</category>
    </item>
    <item>
      <title>What would you consider in mind while writing code in Java Application?</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Fri, 26 Jul 2024 09:28:07 +0000</pubDate>
      <link>https://dev.to/farheen_sk/what-would-you-consider-in-mind-while-writing-code-in-java-application-ge7</link>
      <guid>https://dev.to/farheen_sk/what-would-you-consider-in-mind-while-writing-code-in-java-application-ge7</guid>
      <description>&lt;p&gt;Hello All,&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I wanted to ask you all what all points a developer should keep in mind when writing quality code under timelines.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I will be checking out your comment soon...&lt;/p&gt;

&lt;p&gt;Then, I will share an article on the same. &lt;br&gt;
Happy Friday.&lt;/p&gt;

&lt;p&gt;See ya :)&lt;/p&gt;

</description>
      <category>java</category>
      <category>springboot</category>
      <category>development</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Spring-boot-devtools for autobuilding application in IntelliJ IDE</title>
      <dc:creator>Farheen Shaikh</dc:creator>
      <pubDate>Wed, 17 Jul 2024 08:46:51 +0000</pubDate>
      <link>https://dev.to/farheen_sk/spring-boot-devtools-for-autobuilding-application-in-intellij-ide-239c</link>
      <guid>https://dev.to/farheen_sk/spring-boot-devtools-for-autobuilding-application-in-intellij-ide-239c</guid>
      <description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;When building application in IntelliJ developer has to build and run the application every single time.&lt;/p&gt;

&lt;p&gt;It's really tiresome to do this repeatedly. I found an article online which is by making use of Spring dependency to achieve this.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&amp;lt;dependency&amp;gt;&lt;br&gt;
                &amp;lt;groupId&amp;gt;org.springframework.boot&amp;lt;/groupId&amp;gt;&lt;br&gt;
                &amp;lt;artifactId&amp;gt;spring-boot-devtools&amp;lt;/artifactId&amp;gt;&lt;br&gt;
                &amp;lt;optional&amp;gt;true&amp;lt;/optional&amp;gt;&lt;br&gt;
            &amp;lt;/dependency&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;I'm adding few links for reference from official sites-&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://www.jetbrains.com/help/idea/spring-boot.html#application-update-policies" rel="noopener noreferrer"&gt;https://www.jetbrains.com/help/idea/spring-boot.html#application-update-policies&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.spring.io/spring-boot/reference/using/devtools.html#using.devtools.diagnosing-classloading-issues" rel="noopener noreferrer"&gt;https://docs.spring.io/spring-boot/reference/using/devtools.html#using.devtools.diagnosing-classloading-issues&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Hit the like if you find this article helpful.!&lt;/p&gt;

&lt;p&gt;Thanks for reading.&lt;/p&gt;

</description>
      <category>intellij</category>
      <category>devtools</category>
      <category>springboot</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
