{"id":8,"date":"2019-02-19T02:25:17","date_gmt":"2019-02-19T02:25:17","guid":{"rendered":"https:\/\/www.kindsonthegenius.com\/spring-boot\/?p=8"},"modified":"2019-03-02T04:06:16","modified_gmt":"2019-03-02T04:06:16","slug":"01-spring-boot-introduction","status":"publish","type":"post","link":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/","title":{"rendered":"Spring Boot &#8211; Introduction"},"content":{"rendered":"<p>Spring Boot is a tool that have become very popular and useful. So what is Spring Boot anyway? Spring Boot is an open source frame work used to create microservices. It is java based. So if you are a Java developer, then you have a decent head-start.<\/p>\n<p>With Spring Boot, you can build stand-alone application that are production ready. This is the first in the series of simple course on Spring-Boot. Also remember to watch the video lesson at the end of the each lesson (bottom of this page).<\/p>\n<p style=\"text-align: center;\"><a href=\"https:\/\/www.youtube.com\/watch?v=KVgH3Thy_t4\">Watch the Video<\/a><\/p>\n<ol>\n<li><a href=\"#t1\">What are Microservices?<\/a><\/li>\n<li><a href=\"#t2\">Introduction to Spring Boot<\/a><\/li>\n<li><a href=\"#t3\">Features of Spring Boot<\/a><\/li>\n<li><a href=\"#t4\">How Spring Boot Work<\/a><\/li>\n<li><a href=\"#t5\">Spring Boot Starters<\/a><\/li>\n<li><a href=\"#t6\">Auto Configuration<\/a><\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h4 id=\"t1\">1. What are Microservices?<\/h4>\n<p>Microservice is an application development architecture that enables you to build and deploy services that run independently. So in this an application is would consist of a number of independent microservices.<\/p>\n<p>In this architecture, each service is lightweight and runs its own processes. At the end of the day each microservice, though independent work together with other microservices to achieve a complete business application.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Benefits of Microservices<\/strong><\/p>\n<ul>\n<li>require minimum configuration<\/li>\n<li>ease of deployment<\/li>\n<li>they are highly scalable<\/li>\n<li>relatively lower development\/deployment time<\/li>\n<li>can be used with containers<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h4 id=\"t2\">2. Introduction to Spring Boot<\/h4>\n<p>As previously mentioned, Spring Boot provides you all the tools and platform needed to build stand-alone production-ready Spring application that you can <strong>just run<\/strong>. Now, notice that we mentioned &#8216;Spring application&#8217;. This means application based on the Spring framework.<\/p>\n<p>With Spring Boot, you can boot strap your application with the initial configuration already in place for you.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>Benefits of Spring Boot<\/strong><\/p>\n<p>In addition to the benefits provided by Microservices, Spring Boot also offers he following benefits:<\/p>\n<ul>\n<li>Spring Boot is super easy to use especially for new developers<\/li>\n<li>Helps you achieve more with less effort<\/li>\n<li>Development time is very minimal<\/li>\n<li>Helps you circumvent complex configuration steps typical of web applications<\/li>\n<li>Less code<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h4 id=\"t3\">3. Features of Spring Boot<\/h4>\n<p>The features of Spring Boot include the following:<\/p>\n<p><strong>Auto-configuration<\/strong>: You have almost everything auto-configured in Spring Boot. Again, this means less coding effort.<\/p>\n<p><strong>Flexibility<\/strong>: Spring Boot allows for easy configuration of XML configuration, Java Beans and Database Transactions.<\/p>\n<p><strong>REST Endpoint<\/strong>: It provides for easy management of REST endpoints<\/p>\n<p><strong>Annotation-based<\/strong>: Spring application are annotation based<\/p>\n<p><strong>Dependency Management<\/strong><\/p>\n<p><strong>Embedded Servlet Container<\/strong><\/p>\n<p>&nbsp;<\/p>\n<h4 id=\"t4\">4. How Spring Boot Work<\/h4>\n<p>Once you start a Spring application using Spring Boot,\u00a0 your application is automatically configured (autoconfiguration). This auto-configuration is based on the dependencies that you have specified for your project using\u00a0<strong>@EnableAutoConfiguration<\/strong> annotation. For example, if you have MySQL database on the classpath but have not configured databases connection, then Spring Boot will automatically configure an in-memory database for the application.<\/p>\n<p>All Spring Boot application must have an entry point. The entry point is the class that contains the main method and is annotated with the <strong>@SpringBootApplication<\/strong> annotation.<\/p>\n<p>Another annotation is the @ComponentScan. This makes spring boot automatically scan all the components that are in the class path.<\/p>\n<p>&nbsp;<\/p>\n<h4 id=\"t5\"><strong>5. Spring Boot Starters<\/strong><\/h4>\n<p>Spring Boot starters are what you add to your project that allows spring boot set up the initial dependencies and configuration. An example of spring boot starter is:<\/p>\n<p>&nbsp;<\/p>\n<p style=\"text-align: center;\"><strong>spring-boot-starter-data-jpa<\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>So this is a starter you use to tell Spring that you want to use jpa(Java Persistence API) for data access in your project. To use this starter, simply add the code below :<\/p>\n<p>&nbsp;<\/p>\n<p><!-- HTML generated using hilite.me --><\/p>\n<pre style=\"margin: 0; line-height: 125%;\"><span style=\"color: #007700;\">&lt;dependency&gt;<\/span>\r\n   <span style=\"color: #007700;\">&lt;groupId&gt;<\/span>org.springframework.boot<span style=\"color: #007700;\">&lt;\/groupId&gt;<\/span>\r\n   <span style=\"color: #007700;\">&lt;artifactId&gt;<\/span>spring-boot-starter-data-jpa<span style=\"color: #007700;\">&lt;\/artifactId&gt;<\/span>\r\n<span style=\"color: #007700;\">&lt;\/dependency&gt;<\/span>\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Another example is the one below:<\/p>\n<p style=\"text-align: center;\"><strong>spring-boot-starter-web<\/strong><\/p>\n<p>this is used to configure that application for creating REST API endpoints. To use the web starter, you add the code below:<\/p>\n<p>&nbsp;<\/p>\n<pre style=\"margin: 0; line-height: 125%;\"><span style=\"color: #007700;\">&lt;dependency&gt;<\/span>\r\n   <span style=\"color: #007700;\">&lt;groupId&gt;<\/span>org.springframework.boot<span style=\"color: #007700;\">&lt;\/groupId&gt;<\/span>\r\n   <span style=\"color: #007700;\">&lt;artifactId&gt;<\/span>spring-boot-starter-web<span style=\"color: #007700;\">&lt;\/artifactId&gt;<\/span>\r\n<span style=\"color: #007700;\">&lt;\/dependency&gt;<\/span>\r\n<\/pre>\n<p>&nbsp;<\/p>\n<h4 id=\"t6\">6. Auto Configuration<\/h4>\n<p>One thing you should always remember about spring boot is auto-configuration. This means that Spring Boot automatically configures your application. The auto-configuration is based on the JAR dependencies added to your project.<\/p>\n<p>For this to work, you need to add the <strong>@EnableAutoConfiguration<\/strong> annotation or the <strong>@SpringBootApplication<\/strong> to the entry point (the class that has the main method).<\/p>\n<p>Also note that if you use the Spring IDE (spring-sts) to create your project, then these annotations are automatically added. You don&#8217;t need to add them yourself.<\/p>\n<p>This is what the main class file of the spring boot application looks like:<\/p>\n<p>&nbsp;<\/p>\n<pre style=\"margin: 0; line-height: 125%;\"><span style=\"color: #008800; font-weight: bold;\">package<\/span> com<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">kindsonthegenius<\/span><span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">demo<\/span><span style=\"color: #333333;\">;<\/span>\r\n\r\n<span style=\"color: #008800; font-weight: bold;\">import<\/span> <span style=\"color: #0e84b5; font-weight: bold;\">org.springframework.boot.SpringApplication<\/span><span style=\"color: #333333;\">;<\/span>\r\n<span style=\"color: #008800; font-weight: bold;\">import<\/span> <span style=\"color: #0e84b5; font-weight: bold;\">org.springframework.boot.autoconfigure.SpringBootApplication<\/span><span style=\"color: #333333;\">;<\/span>\r\n\r\n<span style=\"color: #555555; font-weight: bold;\">@SpringBootApplication<\/span>\r\n<span style=\"color: #008800; font-weight: bold;\">public<\/span> <span style=\"color: #008800; font-weight: bold;\">class<\/span> <span style=\"color: #bb0066; font-weight: bold;\">FirstAppApplication<\/span> <span style=\"color: #333333;\">{<\/span>\r\n\r\n\t<span style=\"color: #008800; font-weight: bold;\">public<\/span> <span style=\"color: #008800; font-weight: bold;\">static<\/span> <span style=\"color: #333399; font-weight: bold;\">void<\/span> <span style=\"color: #0066bb; font-weight: bold;\">main<\/span><span style=\"color: #333333;\">(<\/span>String<span style=\"color: #333333;\">[]<\/span> args<span style=\"color: #333333;\">)<\/span> <span style=\"color: #333333;\">{<\/span>\r\n\t\tSpringApplication<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">run<\/span><span style=\"color: #333333;\">(<\/span>FirstAppApplication<span style=\"color: #333333;\">.<\/span><span style=\"color: #0000cc;\">class<\/span><span style=\"color: #333333;\">,<\/span> args<span style=\"color: #333333;\">);<\/span>\r\n\t<span style=\"color: #333333;\">}<\/span>\r\n\r\n<span style=\"color: #333333;\">}<\/span>\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>The @SpringBootApplication annotation encompasses @EnableAutoConfiguration, @ComponentScan and @SpringBoot Configuration.<\/p>\n<p>The @ComponentScan annotation to tell Spring Boot to scan the components added to the project.<\/p>\n<p>Watch the Video<br \/>\n<iframe loading=\"lazy\" src=\"https:\/\/www.youtube.com\/embed\/KVgH3Thy_t4\" width=\"100%\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><span data-mce-type=\"bookmark\" style=\"display: inline-block; width: 0px; overflow: hidden; line-height: 0;\" class=\"mce_SELRES_start\">\ufeff<\/span><\/iframe><\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>Spring Boot is a tool that have become very popular and useful. So what is Spring Boot anyway? Spring Boot is an open source frame &hellip; <!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":1,"featured_media":12,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[2],"tags":[4,3,5,6],"class_list":["post-8","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-spring-boot-tutorials","tag-spring","tag-spring-boot","tag-spring-framework","tag-spring-mvc"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Spring Boot - Introduction - Learn Spring Boot<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Boot - Introduction - Learn Spring Boot\" \/>\n<meta property=\"og:description\" content=\"Spring Boot is a tool that have become very popular and useful. So what is Spring Boot anyway? Spring Boot is an open source frame &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/\" \/>\n<meta property=\"og:site_name\" content=\"Learn Spring Boot\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-19T02:25:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-03-02T04:06:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-content\/uploads\/sites\/7\/2019\/02\/Spring-Boot-Introduction-to-Spring-Boot.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1043\" \/>\n\t<meta property=\"og:image:height\" content=\"538\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"kindsonthegenius\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"kindsonthegenius\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/\"},\"author\":{\"name\":\"kindsonthegenius\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/#\\\/schema\\\/person\\\/7f8fc5792578d2ff54003fcebe6c46b5\"},\"headline\":\"Spring Boot &#8211; Introduction\",\"datePublished\":\"2019-02-19T02:25:17+00:00\",\"dateModified\":\"2019-03-02T04:06:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/\"},\"wordCount\":733,\"commentCount\":6,\"image\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/wp-content\\\/uploads\\\/sites\\\/7\\\/2019\\\/02\\\/Spring-Boot-Introduction-to-Spring-Boot.jpg\",\"keywords\":[\"Spring\",\"Spring Boot\",\"Spring Framework\",\"Spring MVC\"],\"articleSection\":[\"Spring Boot Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/\",\"name\":\"Spring Boot - Introduction - Learn Spring Boot\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/wp-content\\\/uploads\\\/sites\\\/7\\\/2019\\\/02\\\/Spring-Boot-Introduction-to-Spring-Boot.jpg\",\"datePublished\":\"2019-02-19T02:25:17+00:00\",\"dateModified\":\"2019-03-02T04:06:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/#\\\/schema\\\/person\\\/7f8fc5792578d2ff54003fcebe6c46b5\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/wp-content\\\/uploads\\\/sites\\\/7\\\/2019\\\/02\\\/Spring-Boot-Introduction-to-Spring-Boot.jpg\",\"contentUrl\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/wp-content\\\/uploads\\\/sites\\\/7\\\/2019\\\/02\\\/Spring-Boot-Introduction-to-Spring-Boot.jpg\",\"width\":1043,\"height\":538,\"caption\":\"Spring Boot - Introduction to Spring Boot\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/01-spring-boot-introduction\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot &#8211; Introduction\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/#website\",\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/\",\"name\":\"Learn Spring Boot\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/#\\\/schema\\\/person\\\/7f8fc5792578d2ff54003fcebe6c46b5\",\"name\":\"kindsonthegenius\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9d710de456c3d85e5614c3a6992fa3d527425e2ab32b8bd5d85bfbaa235004b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9d710de456c3d85e5614c3a6992fa3d527425e2ab32b8bd5d85bfbaa235004b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9d710de456c3d85e5614c3a6992fa3d527425e2ab32b8bd5d85bfbaa235004b?s=96&d=mm&r=g\",\"caption\":\"kindsonthegenius\"},\"url\":\"https:\\\/\\\/www.kindsonthegenius.com\\\/spring-boot\\\/author\\\/kindsonthegenius-3\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Spring Boot - Introduction - Learn Spring Boot","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/","og_locale":"en_US","og_type":"article","og_title":"Spring Boot - Introduction - Learn Spring Boot","og_description":"Spring Boot is a tool that have become very popular and useful. So what is Spring Boot anyway? Spring Boot is an open source frame &hellip;","og_url":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/","og_site_name":"Learn Spring Boot","article_published_time":"2019-02-19T02:25:17+00:00","article_modified_time":"2019-03-02T04:06:16+00:00","og_image":[{"width":1043,"height":538,"url":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-content\/uploads\/sites\/7\/2019\/02\/Spring-Boot-Introduction-to-Spring-Boot.jpg","type":"image\/jpeg"}],"author":"kindsonthegenius","twitter_card":"summary_large_image","twitter_misc":{"Written by":"kindsonthegenius","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/#article","isPartOf":{"@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/"},"author":{"name":"kindsonthegenius","@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/#\/schema\/person\/7f8fc5792578d2ff54003fcebe6c46b5"},"headline":"Spring Boot &#8211; Introduction","datePublished":"2019-02-19T02:25:17+00:00","dateModified":"2019-03-02T04:06:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/"},"wordCount":733,"commentCount":6,"image":{"@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-content\/uploads\/sites\/7\/2019\/02\/Spring-Boot-Introduction-to-Spring-Boot.jpg","keywords":["Spring","Spring Boot","Spring Framework","Spring MVC"],"articleSection":["Spring Boot Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/","url":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/","name":"Spring Boot - Introduction - Learn Spring Boot","isPartOf":{"@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/#primaryimage"},"image":{"@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/#primaryimage"},"thumbnailUrl":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-content\/uploads\/sites\/7\/2019\/02\/Spring-Boot-Introduction-to-Spring-Boot.jpg","datePublished":"2019-02-19T02:25:17+00:00","dateModified":"2019-03-02T04:06:16+00:00","author":{"@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/#\/schema\/person\/7f8fc5792578d2ff54003fcebe6c46b5"},"breadcrumb":{"@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/#primaryimage","url":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-content\/uploads\/sites\/7\/2019\/02\/Spring-Boot-Introduction-to-Spring-Boot.jpg","contentUrl":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-content\/uploads\/sites\/7\/2019\/02\/Spring-Boot-Introduction-to-Spring-Boot.jpg","width":1043,"height":538,"caption":"Spring Boot - Introduction to Spring Boot"},{"@type":"BreadcrumbList","@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/01-spring-boot-introduction\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.kindsonthegenius.com\/spring-boot\/"},{"@type":"ListItem","position":2,"name":"Spring Boot &#8211; Introduction"}]},{"@type":"WebSite","@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/#website","url":"https:\/\/www.kindsonthegenius.com\/spring-boot\/","name":"Learn Spring Boot","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kindsonthegenius.com\/spring-boot\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.kindsonthegenius.com\/spring-boot\/#\/schema\/person\/7f8fc5792578d2ff54003fcebe6c46b5","name":"kindsonthegenius","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b9d710de456c3d85e5614c3a6992fa3d527425e2ab32b8bd5d85bfbaa235004b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b9d710de456c3d85e5614c3a6992fa3d527425e2ab32b8bd5d85bfbaa235004b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b9d710de456c3d85e5614c3a6992fa3d527425e2ab32b8bd5d85bfbaa235004b?s=96&d=mm&r=g","caption":"kindsonthegenius"},"url":"https:\/\/www.kindsonthegenius.com\/spring-boot\/author\/kindsonthegenius-3\/"}]}},"_links":{"self":[{"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/posts\/8","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/comments?post=8"}],"version-history":[{"count":6,"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/posts\/8\/revisions"}],"predecessor-version":[{"id":81,"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/posts\/8\/revisions\/81"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/media\/12"}],"wp:attachment":[{"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/media?parent=8"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/categories?post=8"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kindsonthegenius.com\/spring-boot\/wp-json\/wp\/v2\/tags?post=8"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}