{"id":41600,"date":"2016-10-14T16:09:15","date_gmt":"2016-10-14T10:39:15","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=41600"},"modified":"2016-12-19T15:04:03","modified_gmt":"2016-12-19T09:34:03","slug":"spring-boot-explained-2","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/","title":{"rendered":"An overview of Spring Boot"},"content":{"rendered":"<p>I have come up with this blog that outlines:<\/p>\n<ol>\n<li style=\"text-align: left;\">What is Spring Boot?<\/li>\n<li style=\"text-align: left;\">Why do we use it?<\/li>\n<li style=\"text-align: left;\">How to get started?<\/li>\n<\/ol>\n<p><strong>1. What is Spring Boot?<\/strong><\/p>\n<p>Spring boot from Spring is just another project enabling\u00a0developers to create stand-alone, production-grade Spring based applications.<\/p>\n<p><strong>2. Why do we use it?<\/strong><\/p>\n<ol>\n<li>Create stand-alone Spring applications<\/li>\n<li>Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files). You can create a war file and deploy if\u00a0need be.<\/li>\n<li>Provide opinionated &#8216;starter&#8217; POMs to simplify your Maven configuration<\/li>\n<li>Absolutely <strong>no code generation<\/strong> and <strong>no requirement for XML<\/strong> configuration (Automatically configure spring wherever possible)<\/li>\n<\/ol>\n<p><strong>3. How to get started?<\/strong><\/p>\n<p>There are multiple ways you can get started with spring boot application eg &#8211; Spring Boot CLI, Maven or gradle build tool.<\/p>\n<p>I am going to use Eclipse + Maven. However, if you prefer using\u00a0gradle or boot client there are many examples that you can find &#8211; <a title=\"Here is one for CLI\" href=\"https:\/\/2thenew.online\/blog\/quick-start-with-springboot-using-cli\/\">Here is one with CLI<\/a> .<\/p>\n<p>Let&#8217;s get started &#8211;<\/p>\n<ol>\n<li>Create a maven project with following archetype<\/li>\n<\/ol>\n<pre>&lt;groupId&gt;am.ik.archetype&lt;\/groupId&gt;\r\n&lt;artifactId&gt;spring-boot-blank-archetype&lt;\/artifactId&gt;\r\n&lt;version&gt;1.0.6&lt;\/version\r\n<\/pre>\n<p>2. Now you will get default pom.xml file with many dependencies ( these dependencies are not required as it&#8217;s just an example, so I am removing all dependencies except the one outlined below)\u00a0&#8211;<\/p>\n<pre>&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n&lt;artifactId&gt;spring-boot-starter-web&lt;\/artifactId<\/pre>\n<p>Here is how your maven may look like &#8211;<\/p>\n<pre>&lt;?xml version=\"1.0\" encoding=\"UTF-8\"?&gt;\r\n&lt;project xmlns=\"http:\/\/maven.apache.org\/POM\/4.0.0\" xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\" xsi:schemaLocation=\"http:\/\/maven.apache.org\/POM\/4.0.0 http:\/\/maven.apache.org\/xsd\/maven-4.0.0.xsd\"&gt;\r\n&lt;modelVersion&gt;4.0.0&lt;\/modelVersion&gt;\r\n\r\n&lt;groupId&gt;com.ttn.aem&lt;\/groupId&gt;\r\n&lt;artifactId&gt;springboot&lt;\/artifactId&gt;\r\n&lt;version&gt;1.0.0&lt;\/version&gt;\r\n&lt;packaging&gt;jar&lt;\/packaging&gt;\r\n\r\n&lt;name&gt;Spring Boot Blank Project (from ;\r\n\r\n&lt;parent&gt;\r\n&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n&lt;artifactId&gt;spring-boot-starter-parent&lt;\/artifactId&gt;\r\n&lt;version&gt;1.4.1.RELEASE&lt;\/version&gt;\r\n&lt;\/parent&gt;\r\n\r\n&lt;properties&gt;\r\n&lt;project.build.sourceEncoding&gt;UTF-8&lt;\/project.build.sourceEncoding&gt;\r\n&lt;!-- &lt;start-class&gt;com.ttn.aem.springboot.main.App&lt;\/start-class&gt; --&gt;\r\n&lt;java.version&gt;1.8&lt;\/java.version&gt;\r\n&lt;lombok.version&gt;1.14.8&lt;\/lombok.version&gt;\r\n&lt;log4jdbc.log4j2.version&gt;1.16&lt;\/log4jdbc.log4j2.version&gt;\r\n&lt;rest.assured.version&gt;2.3.3&lt;\/rest.assured.version&gt;\r\n&lt;\/properties&gt;\r\n\r\n&lt;dependencies&gt;\r\n&lt;dependency&gt;\r\n&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n&lt;artifactId&gt;spring-boot-starter-web&lt;\/artifactId&gt;\r\n&lt;\/dependency&gt;\r\n&lt;\/dependencies&gt;\r\n&lt;build&gt;\r\n&lt;finalName&gt;spring-boot-${project.version}&lt;\/finalName&gt;\r\n&lt;plugins&gt;\r\n&lt;plugin&gt;\r\n&lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n&lt;artifactId&gt;spring-boot-maven-plugin&lt;\/artifactId&gt;\r\n&lt;dependencies&gt;\r\n&lt;dependency&gt;\r\n&lt;groupId&gt;org.springframework&lt;\/groupId&gt;\r\n&lt;artifactId&gt;springloaded&lt;\/artifactId&gt;\r\n&lt;version&gt;${spring-loaded.version}&lt;\/version&gt;\r\n&lt;\/dependency&gt;\r\n&lt;\/dependencies&gt;\r\n&lt;\/plugin&gt;\r\n&lt;\/plugins&gt;\r\n&lt;\/build&gt;\r\n\r\n&lt;\/project&gt;\r\n<\/pre>\n<p>3. You will get 3 generated classes. Out of these, we need only App.java class which we will use as a starter class for our application. Here is how your App.java will look\u00a0\u00a0&#8211;<\/p>\n<p>package com.ttn.aem.springboot.main;<\/p>\n<p>import org.springframework.boot.SpringApplication;<br \/>\nimport org.springframework.boot.autoconfigure.SpringBootApplication;<\/p>\n<pre>@SpringBootApplication(scanBasePackages=\"com.ttn.aem.springboot.controllers\")\r\npublic class App {\r\n    public static void main(String[] args) {\r\n        SpringApplication.run(App.class, args);\r\n    }\r\n}\r\n<\/pre>\n<p>@SpringBootApplication works as entry point for the application and bootstrap spring. When applicaiton starts spring boot search for the configuration annotation.<\/p>\n<p>We can also use @EnableAutoConfiguration and @ComponentScan instead of @SpringBootApplication, depending on the preferences.<\/p>\n<p>We have also given scanBasePackages along with @SpringBootApplication so that it is easy to\u00a0look for the configuration or the classes for which beans needs to be created.<\/p>\n<p>4. Here is our controller code &#8211;<\/p>\n<pre>package com.ttn.aem.springboot.controllers;\r\n\r\nimport org.springframework.beans.factory.annotation.Autowired;\r\nimport org.springframework.web.bind.annotation.RequestMapping;\r\nimport org.springframework.web.bind.annotation.RequestParam;\r\nimport org.springframework.web.bind.annotation.RestController;\r\n\r\n@RestController\r\npublic class HelloController {\r\n\r\n    @RequestMapping(\"\/\")\r\n    public String hello() {\r\n        return \"Hello World!\";\r\n    }\r\n\r\n    @RequestMapping(\"calc\")\r\n    public int calc(@RequestParam int left, @RequestParam int right) {\r\n        return left+right;\r\n    }\r\n}\r\n<\/pre>\n<p>RestController is pretty straight forward isn&#8217;t it?<\/p>\n<p>And we already have instructed spring to scan com.ttn.aem.springboot.controllers package<\/p>\n<p>What&#8217;s next?<\/p>\n<p>That&#8217;s all &#8211; Our application is ready to build and run.<\/p>\n<pre><span style=\"color: #ff0000;\">run mvn clean instal<\/span><\/pre>\n<p>Then<\/p>\n<pre><span style=\"color: #ff0000;\">java -jar target\/&lt;jarname&gt;.jar<\/span><\/pre>\n<p>Now go to\u00a0the below link:<\/p>\n<p>http:\/\/localhost:8000\/calc?left=10&amp;right=5 and http:localhost:8080<\/p>\n<p>You see it works. Was it ever so easy to create a spring rest application?<\/p>\n<ul>\n<li>No Web.xml<\/li>\n<li>No dispatcher-servlet.xml<\/li>\n<li>No applicationContext.xml<\/li>\n<li>No Annotation configuration classes<\/li>\n<li>and the list goes on.<\/li>\n<\/ul>\n<p>Please share your thoughts in the comments below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling\u00a0developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat, [&hellip;]<\/p>\n","protected":false},"author":992,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":7,"footnotes":""},"categories":[446,1],"tags":[4844,4841,1202],"class_list":["post-41600","post","type-post","status-publish","format-standard","hentry","category-java","category-technology","tag-java","tag-spring","tag-spring-boot"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Ravi Kumar\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"An overview of Spring Boot | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"An overview of Spring Boot | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat,\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#article\",\"name\":\"An overview of Spring Boot | TO THE NEW Blog\",\"headline\":\"An overview of Spring Boot\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi-kumar1\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2016-10-14T16:09:15+05:30\",\"dateModified\":\"2016-12-19T15:04:03+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#webpage\"},\"articleSection\":\"Java\\\/JVM, Technology, Java, Spring, spring boot\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#listItem\",\"name\":\"An overview of Spring Boot\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#listItem\",\"position\":3,\"name\":\"An overview of Spring Boot\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi-kumar1\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi-kumar1\\\/\",\"name\":\"Ravi Kumar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/75ea2685-93bc-40bd-9fb3-5ced9b614726_ravi.kumar1@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Ravi Kumar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/\",\"name\":\"An overview of Spring Boot | TO THE NEW Blog\",\"description\":\"I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/spring-boot-explained-2\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi-kumar1\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/ravi-kumar1\\\/#author\"},\"datePublished\":\"2016-10-14T16:09:15+05:30\",\"dateModified\":\"2016-12-19T15:04:03+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"An overview of Spring Boot | TO THE NEW Blog","description":"I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat,","canonical_url":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#article","name":"An overview of Spring Boot | TO THE NEW Blog","headline":"An overview of Spring Boot","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/ravi-kumar1\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"datePublished":"2016-10-14T16:09:15+05:30","dateModified":"2016-12-19T15:04:03+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#webpage"},"articleSection":"Java\/JVM, Technology, Java, Spring, spring boot"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.online\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#listItem","name":"An overview of Spring Boot"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#listItem","position":3,"name":"An overview of Spring Boot","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/ravi-kumar1\/#author","url":"https:\/\/2thenew.online\/blog\/author\/ravi-kumar1\/","name":"Ravi Kumar","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/75ea2685-93bc-40bd-9fb3-5ced9b614726_ravi.kumar1@tothenew.com.jpg","width":96,"height":96,"caption":"Ravi Kumar"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#webpage","url":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/","name":"An overview of Spring Boot | TO THE NEW Blog","description":"I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/ravi-kumar1\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/ravi-kumar1\/#author"},"datePublished":"2016-10-14T16:09:15+05:30","dateModified":"2016-12-19T15:04:03+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"An overview of Spring Boot | TO THE NEW Blog","og:description":"I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat,","og:url":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"An overview of Spring Boot | TO THE NEW Blog","twitter:description":"I have come up with this blog that outlines: What is Spring Boot? Why do we use it? How to get started? 1. What is Spring Boot? Spring boot from Spring is just another project enabling developers to create stand-alone, production-grade Spring based applications. 2. Why do we use it? Create stand-alone Spring applications Embed Tomcat,","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"41600","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 13:56:13","updated":"2024-02-29 08:58:24","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tAn overview of Spring Boot\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Technology","link":"https:\/\/2thenew.online\/blog\/category\/technology\/"},{"label":"An overview of Spring Boot","link":"https:\/\/2thenew.online\/blog\/spring-boot-explained-2\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/41600","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/992"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=41600"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/41600\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=41600"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=41600"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=41600"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}