[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"blog-post-spring-boot-crash-course":3,"blog-posts-all":604},{"_id":4,"path":5,"title":6,"description":7,"meta":8,"body":19},"blog\u002Fblog\u002F2023\u002F03\u002F09\u002Fspring-boot-crash-course.md","\u002Fblog\u002F2023\u002F03\u002F09\u002Fspring-boot-crash-course","Learn Spring & Spring Boot: A Free Crash Course for Beginners","New to Spring? This free crash course shows you where to start, whether to learn Spring or Spring Boot first, and how to build your first Spring Boot app.",{"slug":9,"date":10,"updatedOn":11,"published":12,"tags":13,"author":16,"cover":17,"video":18,"excerpt":11,"shortDesc":7},"spring-boot-crash-course","2023-03-09T11:30:00.000Z",null,true,[14,15],"Spring Boot","Spring Framework","Dan Vega",".\u002Fspring-boot-crash-course-new-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FUgX5lgv4uVM",{"type":20,"value":21,"toc":582},"minimark",[22,27,31,34,37,44,48,51,62,71,76,79,83,86,90,97,100,109,124,129,132,135,138,141,154,159,164,173,176,179,182,196,262,267,270,273,280,283,288,293,296,299,302,306,309,317,320,323,327,330,333,336,342,346,353,358,362,365,369,373,376,382,386,389,393,437,441,464,468,484,488,553,557,578],[23,24,26],"h2",{"id":25},"where-do-i-start","Where do I start?",[28,29,30],"p",{},"I often receive the question, \"I want to learn Spring. Where do I start?\" This is usually asked by someone with Java experience who wants to learn Spring for either their current job or a job they are seeking. Another question I frequently hear is whether someone needs to learn Spring before learning Spring Boot. This article aims to answer these questions.",[28,32,33],{},"I decided to sit down and put together an outline for a course that would help anyone interested in learning Spring get up and running quickly. The first goal of this course is that it is accessible to anyone who wanted to learn Spring and with that I decided to make it available for free on my YouTube channel. Before we take a look at what you need to learn let’s talk about what you should know first.",[28,35,36],{},"Next, I wanted to ensure that the course was the appropriate length, being long enough to cover the material, but still something they can complete over a weekend. As a Udemy course instructor, I have access to statistics on students who start long courses versus those who finish them, and the numbers are rather alarming.",[28,38,39],{},[40,41],"img",{"alt":42,"src":43},"Where do I start learning Spring?","\u002Fimages\u002Fblog\u002F2023\u002F03\u002F09\u002Fphoto-1501504905252-473c47e087f8.jpeg",[23,45,47],{"id":46},"prerequisites","Prerequisites",[28,49,50],{},"To get started with Spring, you should have some experience with the Java Programming Language. Although it is possible to build applications with Kotlin or Groovy, most developers find it helpful to learn Java first and then pick up other JVM languages later.",[28,52,53,54,61],{},"If you want to follow the course that I have created, you will need a basic understanding of Java. If you are new to Java, you can check out my ",[55,56,60],"a",{"href":57,"rel":58},"https:\u002F\u002Fwww.danvega.dev\u002Fcourses",[59],"nofollow","free course"," on Getting Started with Java.",[28,63,64,65,70],{},"For the latest version of Spring, we have set Java 17 as the baseline. Therefore, before proceeding, make sure that you have Java 17 installed on your system. You will need an IDE or text editor that supports Java development. I am a big fan of ",[55,66,69],{"href":67,"rel":68},"https:\u002F\u002Fwww.jetbrains.com\u002Fidea\u002F",[59],"IntelliJ IDEA"," Ultimate which is what I use in this course but feel free to use whatever IDE or text editor you’re most productive in.",[28,72,73],{},[40,74],{"alt":47,"src":75},"\u002Fimages\u002Fblog\u002F2023\u002F03\u002F09\u002Fprerequisites.png",[28,77,78],{},"Once you feel comfortable that you are the ideal student for this course and have everything installed we can start by covering the basics.",[23,80,82],{"id":81},"spring-framework-vs-spring-boot","Spring Framework vs Spring Boot",[28,84,85],{},"If you are new to Spring and have started researching, you have probably encountered the terms Spring Framework and Spring Boot. Do you need to learn both? Which one should you learn first? These are probably some of the questions running through your head, and I hope to help you answer them.",[87,88,15],"h3",{"id":89},"spring-framework",[28,91,92,96],{},[55,93,15],{"href":94,"rel":95},"https:\u002F\u002Fspring.io\u002Fprojects\u002Fspring-framework",[59]," is the foundation which all Spring applications are built upon. The great thing and probably what can be confusing for anyone new to the Spring Framework is that it can be used to build a wide range of applications.",[28,98,99],{},"Traditionally, Spring has been used for building web applications using Spring MVC, which enables the creation of fast, responsive applications that can connect to any data store. However, Spring introduced Spring Webflux to allow for asynchronous, non-blocking architecture, which can improve the performance and scalability of certain applications.",[28,101,102,103,108],{},"You can use Spring to break down monolithic architectures into smaller, independently deployable microservices. Building distributed architectures present a set of problems that need to be solved, but don't worry, ",[55,104,107],{"href":105,"rel":106},"https:\u002F\u002Fspring.io\u002Fprojects\u002Fspring-cloud",[59],"Spring Cloud"," has you covered.",[28,110,111,112,117,118,123],{},"Spring can be used to build serverless workloads that provide ultimate flexibility by scaling on demand, as well as scaling to zero when there is no demand. You can use ",[55,113,116],{"href":114,"rel":115},"https:\u002F\u002Fspring.io\u002Fprojects\u002Fspring-batch",[59],"Spring Batch"," to build automated tasks for processing large sets of data. Finally, one of my new favorite ways to use Spring is to build command-line applications with ",[55,119,122],{"href":120,"rel":121},"https:\u002F\u002Fspring.io\u002Fprojects\u002Fspring-shell",[59],"Spring Shell",".",[28,125,126],{},[40,127],{"alt":15,"src":128},"\u002Fimages\u002Fblog\u002F2023\u002F03\u002F09\u002Fspring-framework.png",[28,130,131],{},"As you can see, Spring can be used to provide solutions for a variety of application needs. That's why when people ask me how to get started with Spring, I usually ask them what they want to use it for. By understanding the type of applications they're trying to build, they can narrow down their learning path to something much more manageable.",[87,133,14],{"id":134},"spring-boot",[28,136,137],{},"Now that you have a good understanding of what the Spring Framework is, let's discuss where Spring Boot fits into the picture. Surprisingly, you don't actually need Spring Boot to build Spring applications. However, as you'll learn here, you would never want to build one without it.",[28,139,140],{},"Spring Boot provides a lot of features out of the box for building Spring applications but I want to focus on 3 of them in this article:",[142,143,144,148,151],"ul",{},[145,146,147],"li",{},"Spring Boot Starters",[145,149,150],{},"AutoConfiguration",[145,152,153],{},"Production Ready",[28,155,156],{},[40,157],{"alt":14,"src":158},"\u002Fimages\u002Fblog\u002F2023\u002F03\u002F09\u002Fspring-boot.png",[28,160,161],{},[162,163,147],"strong",{},[28,165,166,167,172],{},"As I mentioned earlier, you don't necessarily need to use Spring Boot to create a Spring application. In fact, I ",[55,168,171],{"href":169,"rel":170},"https:\u002F\u002Fyoutu.be\u002Fe8aSyQo0nHo",[59],"created a tutorial"," on how to do this, which outlines the process. While the example I provided is relatively simple, the process can become more complicated depending on the type of application you want to build. Nonetheless, I hope this tutorial helps you get started.",[28,174,175],{},"Spring Boot starters are dependency descriptors that simplify the process of including libraries in your project. They provide a quick and easy way to add common functionality to your application, without the need to manually configure each library. Spring Boot starters are available for a wide range of applications, including web, data, testing, and security.",[28,177,178],{},"For example, suppose you want to build a web application. First, you should determine which libraries you need to meet your requirements. For a typical web application, you need Spring Core, along with an embedded servlet container like Tomcat, Spring MVC, and a library like Jackson for serializing and deserializing objects to and from JSON.",[28,180,181],{},"Once you have identified the dependencies of your application, you need to determine their respective versions and whether they are compatible with each other. This task becomes increasingly difficult as the complexity of your application grows.",[28,183,184,185,190,191,195],{},"When creating a new project at ",[55,186,189],{"href":187,"rel":188},"http:\u002F\u002Fstart.spring.io\u002F",[59],"start.spring.io",", one of the options is to select your dependencies. If you choose Spring Web, you are indicating that you want to build a traditional Spring MVC application. By doing so, you will receive a single Spring Boot Starter called ",[192,193,194],"code",{},"spring-boot-starter-web",", which includes all of the necessary dependencies with the correct versions.",[197,198,203],"pre",{"className":199,"code":200,"language":201,"meta":202,"style":202},"language-xml shiki shiki-themes github-light github-dark github-light","\u003Cdependency>\n    \u003CgroupId>org.springframework.boot\u003C\u002FgroupId>\n    \u003CartifactId>spring-boot-starter-web\u003C\u002FartifactId>\n\u003C\u002Fdependency>\n","xml","",[192,204,205,221,237,252],{"__ignoreMap":202},[206,207,210,214,218],"span",{"class":208,"line":209},"line",1,[206,211,213],{"class":212},"s-uPX","\u003C",[206,215,217],{"class":216},"suaqH","dependency",[206,219,220],{"class":212},">\n",[206,222,224,227,230,233,235],{"class":208,"line":223},2,[206,225,226],{"class":212},"    \u003C",[206,228,229],{"class":216},"groupId",[206,231,232],{"class":212},">org.springframework.boot\u003C\u002F",[206,234,229],{"class":216},[206,236,220],{"class":212},[206,238,240,242,245,248,250],{"class":208,"line":239},3,[206,241,226],{"class":212},[206,243,244],{"class":216},"artifactId",[206,246,247],{"class":212},">spring-boot-starter-web\u003C\u002F",[206,249,244],{"class":216},[206,251,220],{"class":212},[206,253,255,258,260],{"class":208,"line":254},4,[206,256,257],{"class":212},"\u003C\u002F",[206,259,217],{"class":216},[206,261,220],{"class":212},[28,263,264],{},[162,265,266],{},"Auto-Configuration",[28,268,269],{},"The next important feature of Spring Boot we need to discuss is auto-configuration. Spring Boot auto-configuration attempts to configure your application based on the dependencies that you have added.",[28,271,272],{},"If you create a Spring Web application, an embedded version of Tomcat is included. In a typical Java application, you would need to set up and configure Tomcat yourself. However, since Tomcat is on the classpath, Spring automatically configures it and provides sensible defaults such as setting the default port to 8080. You can always change the port through your own configuration, but Spring sets this default to get you up and running quickly.",[28,274,275,276,279],{},"Here's another example of how to include a database like ",[192,277,278],{},"H2"," in your project. In a typical Java application, you would need to set up and configure a data source, which can be a tedious process that slows down your development. With Spring, however, you can easily configure a data source without any extra hassle. If needed, you can always modify the configuration to fit your specific requirements.",[28,281,282],{},"Auto-configuration is a feature of Spring Boot that allows developers to configure their applications without writing any boilerplate code. Spring Boot combines a set of sensible default configurations, based on what dependencies you have added to your project, to help you get up and running quickly. This means that you can focus on writing business logic rather than worrying about configuration details.",[28,284,285],{},[162,286,287],{},"Production Ready Features",[28,289,290],{},[40,291],{"alt":287,"src":292},"\u002Fimages\u002Fblog\u002F2023\u002F03\u002F09\u002Fphoto-1580106815433-a5b1d1d53d85.jpeg",[28,294,295],{},"Enabling developers to build the next generation of applications is not enough if you cannot get them into production. Spring provides a range of features that can assist you in building your applications for any environment and comprehending how they are performing in that environment.",[28,297,298],{},"The first step in moving to production is to build an artifact suitable for the environment you are moving to. The Spring Boot Maven and Gradle plugins allow you to build an executable JAR that can be run in any environment that supports Java. For environments that don't support Java, you can use Cloud Native Buildpacks to create an optimized Docker-compatible container image. Finally, for certain workloads, it might make sense to create a native executable.",[28,300,301],{},"Once you move your application to production you need to ensure that it is working as expected. You can use the Spring Actuator to gain observability into your application, allowing you to monitor and troubleshoot issues as they arise. Spring Boot provides a range of features to help you build and deploy your applications for any environment, whether it be on-premise or in the cloud.",[87,303,305],{"id":304},"which-one-do-i-learn-first","Which one do I learn first?",[28,307,308],{},"Now that we know the difference between Spring Framework and Spring Boot, we can answer the question of which one to learn first. When building your first Spring application, you will use Spring Boot. However, in the process of building it, you will inherently learn Spring Framework.",[28,310,311,312,123],{},"The Spring Framework is based on the concepts of Inversion of Control (IoC) and Dependency Injection (DI). In this crash course, you will learn about these concepts and come to understand terms like Application Context, Containers, and beans. Once you have a basic understanding of these concepts and have built something with them, you can dive deeper into the ",[55,313,316],{"href":314,"rel":315},"https:\u002F\u002Fdocs.spring.io\u002Fspring-framework\u002Fdocs\u002Fcurrent\u002Freference\u002Fhtml\u002Fcore.html#spring-core",[59],"Spring Reference documentation",[23,318,319],{"id":9},"Spring Boot Crash Course",[28,321,322],{},"By now, I hope you have a good understanding of Spring. I believe that theory can only take you so far, and it's time to get your hands dirty. As a proponent of hands-on learning, I encourage you to build something real and tangible when learning something new.",[87,324,326],{"id":325},"what-are-we-building","What are we building",[28,328,329],{},"This is a REST API application that will communicate with a database. To focus our application, we decided to build out a content calendar since the content has many different properties and we could include a couple of Enums.",[28,331,332],{},"When a client calls the REST API, it initially talks to an in-memory collection of data. Once the application is fully functional, we will move the in-memory collection to a database. You will learn about connecting to, reading, and persisting data in Java and Spring.",[28,334,335],{},"Ultimately, it is important to get our applications into production. Therefore, I will guide you through deploying your application and database into production using a free hosting service.",[28,337,338],{},[40,339],{"alt":340,"src":341},"What are we building?","\u002Fimages\u002Fblog\u002F2023\u002F03\u002F09\u002Fwhat-are-we-building.png",[87,343,345],{"id":344},"what-are-we-going-to-learn","What are we going to learn?",[28,347,348,349,352],{},"To start, you will build a new application from scratch using ",[55,350,189],{"href":187,"rel":351},[59],". Along the way, you will learn many core concepts in Spring, such as Bean and Dependency Injection. You will also learn how to build a REST API using Spring MVC, connect and configure a database in Spring, and use Spring Data Repositories to remove boilerplate code and focus on application requirements. Finally, you will prepare your application for production, build and deploy it.",[28,354,355],{},[40,356],{"alt":345,"src":357},"\u002Fimages\u002Fblog\u002F2023\u002F03\u002F09\u002Fwhat-are-we-learning.png",[87,359,361],{"id":360},"spring-boot-crash-course-video","Spring Boot Crash Course Video",[28,363,364],{},"If you didn't receive the link to the video at the beginning of the article, you can find the course here. The video is almost 4 hours long, but there are chapters listed in the YouTube description if you need to jump around. I hope you enjoy it and would love to hear your feedback.",[366,367],"you-tube",{"id":368},"UgX5lgv4uVM",[87,370,372],{"id":371},"github-repository","Github Repository",[28,374,375],{},"You can find all of the code for the Spring Boot Crash Course at the GitHub Repository listed below.",[28,377,378],{},[55,379,380],{"href":380,"rel":381},"https:\u002F\u002Fgithub.com\u002Fdanvega\u002Fcontent-calendar",[59],[23,383,385],{"id":384},"resources","Resources",[28,387,388],{},"This is a list of resources I recommend when learning Spring.",[87,390,392],{"id":391},"documentation","Documentation",[142,394,395,402,409,416,423,430],{},[145,396,397],{},[55,398,401],{"href":399,"rel":400},"https:\u002F\u002Fdocs.spring.io\u002Fspring-framework\u002Fdocs\u002Fcurrent\u002Freference\u002Fhtml\u002F",[59],"Spring Framework Reference",[145,403,404],{},[55,405,408],{"href":406,"rel":407},"https:\u002F\u002Fdocs.spring.io\u002Fspring-framework\u002Fdocs\u002Fcurrent\u002Fjavadoc-api\u002F",[59],"Spring Framework API",[145,410,411],{},[55,412,415],{"href":413,"rel":414},"https:\u002F\u002Fdocs.spring.io\u002Fspring-boot\u002Fdocs\u002Fcurrent\u002Freference\u002Fhtml\u002Findex.html",[59],"Spring Boot Reference",[145,417,418],{},[55,419,422],{"href":420,"rel":421},"https:\u002F\u002Fdocs.spring.io\u002Fspring-boot\u002Fdocs\u002Fcurrent\u002Fapi\u002F",[59],"Spring Boot API",[145,424,425],{},[55,426,429],{"href":427,"rel":428},"https:\u002F\u002Fspring.io\u002Fguides",[59],"Spring Boot Guides",[145,431,432],{},[55,433,436],{"href":434,"rel":435},"https:\u002F\u002Ftanzu.vmware.com\u002Fdeveloper\u002Fguides\u002F",[59],"Tanzu Developer Center Guides",[87,438,440],{"id":439},"books","Books",[142,442,443,450,457],{},[145,444,445],{},[55,446,449],{"href":447,"rel":448},"https:\u002F\u002Famzn.to\u002F3WOSutb",[59],"Spring Boot Up and Running - Mark Heckler",[145,451,452],{},[55,453,456],{"href":454,"rel":455},"https:\u002F\u002Famzn.to\u002F3CuCgxc",[59],"Learning Spring Boot 3.0 - Greg Turnquist",[145,458,459],{},[55,460,463],{"href":461,"rel":462},"https:\u002F\u002Famzn.to\u002F3ZcI3kx",[59],"Spring Boot in Action - Craig Walls",[87,465,467],{"id":466},"podcasts","Podcasts",[142,469,470,477],{},[145,471,472],{},[55,473,476],{"href":474,"rel":475},"http:\u002F\u002Fbootifulpodcast.fm\u002F",[59],"Bootiful Podcast",[145,478,479],{},[55,480,483],{"href":481,"rel":482},"https:\u002F\u002Fwww.springofficehours.io",[59],"Spring Office Hours",[87,485,487],{"id":486},"youtube","YouTube",[142,489,490,497,504,511,518,525,532,539,546],{},[145,491,492],{},[55,493,496],{"href":494,"rel":495},"https:\u002F\u002Fwww.youtube.com\u002F@SpringBootLearning",[59],"Spring Boot Learning",[145,498,499],{},[55,500,503],{"href":501,"rel":502},"https:\u002F\u002Fwww.youtube.com\u002Fplaylist?list=PLgGXSWYM2FpPw8rV0tZoMiJYSCiLhPnOc",[59],"Spring Tips",[145,505,506],{},[55,507,510],{"href":508,"rel":509},"https:\u002F\u002Fwww.youtube.com\u002F@SpringSourceDev",[59],"Spring Developer",[145,512,513],{},[55,514,517],{"href":515,"rel":516},"https:\u002F\u002Fwww.youtube.com\u002F@amigoscode",[59],"Amigoscode",[145,519,520],{},[55,521,524],{"href":522,"rel":523},"https:\u002F\u002Fwww.youtube.com\u002Fc\u002FJavaBrainsChannel",[59],"Java Brains",[145,526,527],{},[55,528,531],{"href":529,"rel":530},"https:\u002F\u002Fwww.youtube.com\u002F@dashaun",[59],"DaShaun Carter",[145,533,534],{},[55,535,538],{"href":536,"rel":537},"https:\u002F\u002Fwww.youtube.com\u002F@coffeesoftware",[59],"Coffee and Software",[145,540,541],{},[55,542,545],{"href":543,"rel":544},"https:\u002F\u002Fwww.youtube.com\u002F@DailyCodeBuffer",[59],"Daily Code Buffer",[145,547,548],{},[55,549,552],{"href":550,"rel":551},"https:\u002F\u002Fwww.youtube.com\u002F@MarcoCodes",[59],"Marco Codes",[23,554,556],{"id":555},"conclusion","Conclusion",[28,558,559,560,565,566,571,572,577],{},"I had a lot of fun putting together this Spring Boot Crash Course. I hope it helps anyone interested in learning Spring, and that the video and this article help answer any questions you have about getting started. Please feel free to follow me on ",[55,561,564],{"href":562,"rel":563},"https:\u002F\u002Ftwitter.com\u002Ftherealdanvega",[59],"Twitter",", Subscribe to my ",[55,567,570],{"href":568,"rel":569},"https:\u002F\u002Fwww.youtube.com\u002F@danvega",[59],"YouTube channel",", or sign up for my free ",[55,573,576],{"href":574,"rel":575},"https:\u002F\u002Fwww.danvega.dev\u002Fnewsletter\u002F",[59],"newsletter"," to stay up to date with what I am working on.",[579,580,581],"style",{},"html pre.shiki code .s-uPX, html code.shiki .s-uPX{--shiki-default:#24292E;--shiki-dark:#E1E4E8;--shiki-sepia:#24292E}html pre.shiki code .suaqH, html code.shiki .suaqH{--shiki-default:#22863A;--shiki-dark:#85E89D;--shiki-sepia:#22863A}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .sepia .shiki span {color: var(--shiki-sepia);background: var(--shiki-sepia-bg);font-style: var(--shiki-sepia-font-style);font-weight: var(--shiki-sepia-font-weight);text-decoration: var(--shiki-sepia-text-decoration);}html.sepia .shiki span {color: var(--shiki-sepia);background: var(--shiki-sepia-bg);font-style: var(--shiki-sepia-font-style);font-weight: var(--shiki-sepia-font-weight);text-decoration: var(--shiki-sepia-text-decoration);}",{"title":202,"searchDepth":223,"depth":223,"links":583},[584,585,586,591,597,603],{"id":25,"depth":223,"text":26},{"id":46,"depth":223,"text":47},{"id":81,"depth":223,"text":82,"children":587},[588,589,590],{"id":89,"depth":239,"text":15},{"id":134,"depth":239,"text":14},{"id":304,"depth":239,"text":305},{"id":9,"depth":223,"text":319,"children":592},[593,594,595,596],{"id":325,"depth":239,"text":326},{"id":344,"depth":239,"text":345},{"id":360,"depth":239,"text":361},{"id":371,"depth":239,"text":372},{"id":384,"depth":223,"text":385,"children":598},[599,600,601,602],{"id":391,"depth":239,"text":392},{"id":439,"depth":239,"text":440},{"id":466,"depth":239,"text":467},{"id":486,"depth":239,"text":487},{"id":555,"depth":223,"text":556},[605,622,638,654,668,685,699,713,726,738,751,763,777,792,804,817,832,847,861,875,887,900,914,926,941,954,966,981,995,1007,1020,1031,1043,1055,1067,1079,1090,1103,1116,1128,1143,1154,1168,1181,1192,1204,1216,1228,1240,1251,1264,1276,1288,1299,1312,1323,1336,1349,1362,1373,1385,1396,1408,1419,1430,1441,1452,1463,1475,1486,1500,1512,1523,1534,1545,1556,1567,1578,1589,1600,1611,1623,1636,1648,1661,1674,1687,1699,1711,1723,1735,1746,1757,1768,1780,1792,1804,1816,1828,1840,1853,1868,1879,1890,1902,1914,1926,1938,1951,1963,1975,1987,1999,2012,2016,2030,2043,2055,2067,2080,2091,2103,2115,2128,2140,2152,2164,2176,2188,2202,2217,2229,2241,2252,2263,2276,2289,2303,2315,2326,2337,2348,2360,2372,2385,2399,2412,2424,2436,2450,2461,2472,2483,2494,2506,2517,2528,2540,2552,2564,2576,2588,2601,2613,2625,2637,2648,2659,2671,2683,2695,2706,2717,2728,2739,2750,2761,2772,2784,2795,2806,2817,2827,2837,2849,2860,2871,2881,2892,2903,2913,2922,2932,2942,2952,2963,2973,2984,2995,3005,3015,3025,3035,3045,3056,3066,3077,3087,3097,3107,3118,3128,3138,3148,3159,3168,3178,3188,3198,3209,3220,3230,3239,3248,3259,3270,3280,3289,3299,3309,3319,3330,3340,3350,3360,3371,3380,3390,3401,3413,3424,3434,3445,3456,3466,3476,3488,3499,3510,3521,3531,3541,3552,3563,3573,3583,3593,3604,3613,3622,3631,3640,3649,3658,3667,3676,3685],{"_id":606,"path":607,"title":608,"description":609,"meta":610,"readingTime":619},"blog\u002Fblog\u002F2026\u002F07\u002F30\u002Fupgrading-dependencies-with-ai.md","\u002Fblog\u002F2026\u002F07\u002F30\u002Fupgrading-dependencies-with-ai","Upgrading Dependencies with AI: A Practical Guide","Learn a practical workflow for upgrading dependencies with AI, using scope, scale, and stakes to decide when to reach for an LLM to patch your projects.",{"slug":611,"date":612,"published":12,"tags":613,"author":16,"cover":617,"video":618,"excerpt":11,"shortDesc":609},"upgrading-dependencies-with-ai","2026-07-30T09:00:00.000Z",[614,615,616],"AI","Web Development","Nuxt","upgrading-dependencies-with-ai.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMYtia9xsTrQ",{"minutes":620,"text":621},11,"11 min read",{"_id":623,"path":624,"title":625,"description":626,"meta":627,"readingTime":635},"blog\u002Fblog\u002F2026\u002F07\u002F28\u002Fspring-ai-guardrails-safeguard-advisor.md","\u002Fblog\u002F2026\u002F07\u002F28\u002Fspring-ai-guardrails-safeguard-advisor","Spring AI: Build Real Guardrails that hold","Learn how to build Spring AI guardrails with SafeGuardAdvisor, custom PII masking, and output rails to stop prompt injection and data leaks.",{"slug":628,"date":629,"published":12,"tags":630,"author":16,"cover":633,"video":634,"excerpt":11,"shortDesc":626},"spring-ai-guardrails-safeguard-advisor","2026-07-28T09:00:00.000Z",[631,14,632],"Spring AI","Java","spring-ai-guardrails-safeguard-advisor.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FEZ6Uh1-8Ui4",{"minutes":636,"text":637},21,"21 min read",{"_id":639,"path":640,"title":641,"description":642,"meta":643,"readingTime":651},"blog\u002Fblog\u002F2026\u002F07\u002F27\u002Fdocker-compose-for-java-developers.md","\u002Fblog\u002F2026\u002F07\u002F27\u002Fdocker-compose-for-java-developers","Docker Compose for Java Developers, Explained","Learn what that docker-compose.yml in every Java repo actually does. Spin up Postgres with one command and run any project you clone with zero setup.",{"slug":644,"date":645,"published":12,"tags":646,"author":16,"cover":649,"video":650,"excerpt":11,"shortDesc":642},"docker-compose-for-java-developers","2026-07-27T09:00:00.000Z",[632,647,648],"Docker","Postgres","docker-compose-for-java-developers.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F0LNVXHKKJb8",{"minutes":652,"text":653},17,"17 min read",{"_id":655,"path":656,"title":657,"description":658,"meta":659,"readingTime":665},"blog\u002Fblog\u002F2026\u002F07\u002F24\u002Fspring-ai-tool-calling-advisor-2-0.md","\u002Fblog\u002F2026\u002F07\u002F24\u002Fspring-ai-tool-calling-advisor-2-0","Spring AI 2.0 Tool Calling: Build a Live Claude-Style UI","Build a Claude-style 'Calling tool...' UI with Spring AI 2.0's ToolCallingAdvisor. Stream live tool call events over SSE from the ChatClient advisor chain.",{"slug":660,"date":661,"published":12,"tags":662,"author":16,"cover":663,"video":664,"excerpt":11,"shortDesc":658},"spring-ai-tool-calling-advisor-2-0","2026-07-24T09:00:00.000Z",[631,14,632],"spring-ai-tool-calling-advisor-2-0.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fg6IhOsFKM7c",{"minutes":666,"text":667},19,"19 min read",{"_id":669,"path":670,"title":671,"description":672,"meta":673,"readingTime":682},"blog\u002Fblog\u002F2026\u002F07\u002F20\u002Fembabel-1-0-ga.md","\u002Fblog\u002F2026\u002F07\u002F20\u002Fembabel-1-0-ga","Embabel 1.0 Is Here: AI Agent Framework for Java Goes GA","Embabel 1.0 is GA. What Rod Johnson's AI agent framework for the JVM means for Java developers, what changed on the road to 1.0, and how to get started.",{"slug":674,"date":675,"published":12,"tags":676,"author":11,"cover":681,"video":11,"excerpt":11,"shortDesc":672},"embabel-1-0-ga","2026-07-20T09:00:00.000Z",[677,678,679,680],"java","spring-ai","embabel","ai-agents","embabel-1-0-ga-brutalist.png",{"minutes":683,"text":684},12,"12 min read",{"_id":686,"path":687,"title":688,"description":689,"meta":690,"readingTime":696},"blog\u002Fblog\u002F2026\u002F07\u002F18\u002Fcontent-creation-workflow.md","\u002Fblog\u002F2026\u002F07\u002F18\u002Fcontent-creation-workflow","My Content Creation Workflow: 10 Stages From Idea to Published","My complete 10-stage content creation workflow for YouTube: ideation, packaging, AI rough cuts, repurposing videos into blog posts, Shorts, and a newsletter.",{"slug":691,"date":692,"published":12,"tags":693,"author":16,"cover":695,"video":11,"excerpt":11,"shortDesc":689},"content-creation-workflow","2026-07-18T09:00:00.000Z",[487,694,614],"Blogging","content-creation-workflow-blueprint.png",{"minutes":697,"text":698},8,"8 min read",{"_id":700,"path":701,"title":702,"description":703,"meta":704,"readingTime":710},"blog\u002Fblog\u002F2026\u002F07\u002F17\u002Fself-correcting-structured-output.md","\u002Fblog\u002F2026\u002F07\u002F17\u002Fself-correcting-structured-output","Self-Correcting Structured Output in Spring AI 2.0","Learn how Spring AI 2.0 validates LLM JSON against your schema and automatically retries failures with self-correcting structured output. A beginner guide.",{"slug":705,"date":706,"published":12,"tags":707,"author":16,"cover":708,"video":709,"excerpt":11,"shortDesc":703},"self-correcting-structured-output","2026-07-17T09:00:00.000Z",[631,14,632],"self-correcting-structured-output.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvxOeeNyOtZY",{"minutes":711,"text":712},16,"16 min read",{"_id":714,"path":715,"title":716,"description":717,"meta":718,"readingTime":723},"blog\u002Fblog\u002F2026\u002F07\u002F15\u002Fcan-you-use-java-for-ai.md","\u002Fblog\u002F2026\u002F07\u002F15\u002Fcan-you-use-java-for-ai","Can You Use Java for AI? Why Java Is Better Positioned Than You Think","Can you use Java for AI? Yes. For building real AI applications it might be the better choice. Why the JVM, Spring AI, and your existing team are enough.",{"slug":719,"date":720,"published":12,"tags":721,"author":16,"cover":722,"video":11,"excerpt":11,"shortDesc":717},"can-you-use-java-for-ai","2026-07-15T09:00:00.000Z",[632,614,631],"can-you-use-java-for-ai-editorial.png",{"minutes":724,"text":725},14,"14 min read",{"_id":727,"path":728,"title":729,"description":730,"meta":731,"readingTime":737},"blog\u002Fblog\u002F2026\u002F07\u002F14\u002Fspring-boot-end-of-life.md","\u002Fblog\u002F2026\u002F07\u002F14\u002Fspring-boot-end-of-life","Spring Boot End of Life: Every 3.x Branch Is Now Unsupported","Spring Boot 3.5 reached end of life in June 2026 and every 3.x branch is now unsupported. What that means, and how to plan your Spring Boot 4 upgrade.",{"slug":732,"date":733,"published":12,"tags":734,"author":16,"cover":736,"video":11,"excerpt":11,"shortDesc":730},"spring-boot-end-of-life","2026-07-14T13:00:00.000Z",[14,632,735,614],"Spring Boot 4","spring-boot-end-of-life-terminal.png",{"minutes":620,"text":621},{"_id":739,"path":740,"title":741,"description":742,"meta":743,"readingTime":748},"blog\u002Fblog\u002F2026\u002F07\u002F14\u002Fkill-process-on-port.md","\u002Fblog\u002F2026\u002F07\u002F14\u002Fkill-process-on-port","How to Kill a Process Running on a Port (Windows, macOS & Linux)","Port 8080 already in use? Learn how to find and kill the process running on a port on Windows, macOS, and Linux—with copy-paste commands for each.",{"slug":744,"date":745,"published":12,"tags":746,"author":16,"cover":747,"video":11,"excerpt":11,"shortDesc":742},"kill-process-on-port","2026-07-14T09:00:00.000Z",[632,14],"kill-process-on-port.png",{"minutes":749,"text":750},7,"7 min read",{"_id":752,"path":753,"title":754,"description":755,"meta":756,"readingTime":762},"blog\u002Fblog\u002F2026\u002F07\u002F09\u002Fspring-ai-tool-search.md","\u002Fblog\u002F2026\u002F07\u002F09\u002Fspring-ai-tool-search","Spring AI Tool Search: Stop Wasting Tokens on Tools You Don't Need","Spring AI 2.0's tool search brings dynamic tool discovery to Spring Boot—load tools on demand instead of into every request to cut token usage and cost.",{"slug":757,"date":758,"published":12,"tags":759,"author":16,"cover":760,"video":761,"excerpt":11,"shortDesc":755},"spring-ai-tool-search","2026-07-09T09:00:00.000Z",[631,14],"spring-ai-tool-search.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FVG00DildlvY",{"minutes":652,"text":653},{"_id":764,"path":765,"title":766,"description":767,"meta":768,"readingTime":774},"blog\u002Fblog\u002F2026\u002F07\u002F08\u002Fspring-ai-custom-advisors-tool-logging-token-counter.md","\u002Fblog\u002F2026\u002F07\u002F08\u002Fspring-ai-custom-advisors-tool-logging-token-counter","Building Custom Spring AI Advisors for Tool Logging and Token Tracking","Learn to build custom Spring AI advisors with the BaseAdvisor interface to log available tools, track tool invocations, and count token usage on every LLM call.",{"slug":769,"date":770,"published":12,"tags":771,"author":16,"cover":772,"video":773,"excerpt":11,"shortDesc":767},"spring-ai-custom-advisors-tool-logging-token-counter","2026-07-08T09:00:00.000Z",[631,14,632],"spring-ai-custom-advisors-tool-logging-token-counter.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FWNJFR-_N9bc",{"minutes":775,"text":776},24,"24 min read",{"_id":778,"path":779,"title":780,"description":781,"meta":782,"readingTime":789},"blog\u002Fblog\u002F2026\u002F07\u002F07\u002Fui-dot-sh-agent-skills-for-building-beautiful-uis.md","\u002Fblog\u002F2026\u002F07\u002F07\u002Fui-dot-sh-agent-skills-for-building-beautiful-uis","UI.sh: Agent Skills That Actually Make AI-Generated UIs Look Good","UI.sh is a collection of agent skills from the Tailwind CSS and Refactoring UI team that give Claude Code and Codex the polish of a senior UI designer.",{"slug":783,"date":784,"published":12,"tags":785,"author":16,"cover":787,"video":788,"excerpt":11,"shortDesc":781},"ui-dot-sh-agent-skills-for-building-beautiful-uis","2026-07-07T09:00:00.000Z",[614,786],"Tailwind CSS","ui-dot-sh-agent-skills-for-building-beautiful-uis.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F-B7uyMp54S4",{"minutes":790,"text":791},9,"9 min read",{"_id":793,"path":794,"title":795,"description":796,"meta":797,"readingTime":803},"blog\u002Fblog\u002F2026\u002F07\u002F02\u002Fchatclient-vs-chatmodel-spring-ai.md","\u002Fblog\u002F2026\u002F07\u002F02\u002Fchatclient-vs-chatmodel-spring-ai","ChatClient vs ChatModel: Which Spring AI API Should You Actually Use?","Spring AI gives you two ways to call an LLM. Learn the difference between ChatClient and ChatModel, when to use each, and see both in action with code examples.",{"slug":798,"date":799,"published":12,"tags":800,"author":16,"cover":801,"video":802,"excerpt":11,"shortDesc":796},"chatclient-vs-chatmodel-spring-ai","2026-07-02T09:00:00.000Z",[631,14],"chatclient-vs-chatmodel-spring-ai.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FIdIDI71sGZM",{"minutes":724,"text":725},{"_id":805,"path":806,"title":807,"description":808,"meta":809,"readingTime":816},"blog\u002Fblog\u002F2026\u002F07\u002F01\u002Fx-twitter-mcp-servers-spring-ai.md","\u002Fblog\u002F2026\u002F07\u002F01\u002Fx-twitter-mcp-servers-spring-ai","X (Twitter) MCP Servers with Spring AI: Search Posts and Query Docs Programmatically","X released MCP servers for its API and docs. Build a Spring Boot MCP client with Spring AI 2.0 to search X posts and query the X API docs programmatically.",{"slug":810,"date":811,"published":12,"tags":812,"author":16,"cover":814,"video":815,"excerpt":11,"shortDesc":808},"x-twitter-mcp-servers-spring-ai","2026-07-01T09:00:00.000Z",[631,813,14],"MCP","x-twitter-mcp-servers-spring-ai.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fj4chxGtqkY8",{"minutes":666,"text":667},{"_id":818,"path":819,"title":820,"description":821,"meta":822,"readingTime":829},"blog\u002Fblog\u002F2026\u002F06\u002F30\u002Ftype-safe-property-paths-spring-boot-4-1.md","\u002Fblog\u002F2026\u002F06\u002F30\u002Ftype-safe-property-paths-spring-boot-4-1","Type Safe Property Paths in Spring Boot 4.1","Spring Boot 4.1 adds type-safe property paths to Spring Data, replacing stringly typed references in sorting, criteria queries, and composite paths.",{"slug":823,"date":824,"published":12,"tags":825,"author":16,"cover":827,"video":828,"excerpt":11,"shortDesc":821},"type-safe-property-paths-spring-boot-4-1","2026-06-30T09:00:00.000Z",[14,826],"Spring Data","type-safe-property-paths-spring-boot-4-1.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FqBC-TrIzsPg",{"minutes":830,"text":831},18,"18 min read",{"_id":833,"path":834,"title":835,"description":836,"meta":837,"readingTime":844},"blog\u002Fblog\u002F2026\u002F06\u002F29\u002Fredis-listener-spring-boot-4-1.md","\u002Fblog\u002F2026\u002F06\u002F29\u002Fredis-listener-spring-boot-4-1","The New @RedisListener Annotation in Spring Boot 4.1","Spring Boot 4.1 adds @RedisListener, one annotation that brings Redis Pub\u002FSub in line with @KafkaListener and @RabbitListener. No container wiring needed.",{"slug":838,"date":839,"published":12,"tags":840,"author":16,"cover":842,"video":843,"excerpt":11,"shortDesc":836},"redis-listener-spring-boot-4-1","2026-06-29T09:00:00.000Z",[14,841],"Redis","redis-listener-spring-boot-4-1.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlMbgBYlUtfc",{"minutes":845,"text":846},10,"10 min read",{"_id":848,"path":849,"title":850,"description":851,"meta":852,"readingTime":858},"blog\u002Fblog\u002F2026\u002F06\u002F26\u002Fspring-boot-ssrf-protection-inet-address-filter.md","\u002Fblog\u002F2026\u002F06\u002F26\u002Fspring-boot-ssrf-protection-inet-address-filter","SSRF Protection in Spring Boot 4.1 with InetAddressFilter","Learn how Spring Boot 4.1's new InetAddressFilter protects your applications against Server-Side Request Forgery (SSRF) attacks with a single bean definition.",{"slug":853,"date":854,"published":12,"tags":855,"author":16,"cover":856,"video":857,"excerpt":11,"shortDesc":851},"spring-boot-ssrf-protection-inet-address-filter","2026-06-26T09:00:00.000Z",[14,632],"spring-boot-ssrf-protection-inet-address-filter.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPDbBG_GrcwU",{"minutes":859,"text":860},13,"13 min read",{"_id":862,"path":863,"title":864,"description":865,"meta":866,"readingTime":872},"blog\u002Fblog\u002F2026\u002F06\u002F25\u002Flazy-jdbc-connections-spring-boot-4-1.md","\u002Fblog\u002F2026\u002F06\u002F25\u002Flazy-jdbc-connections-spring-boot-4-1","Lazy JDBC Connections in Spring Boot 4.1: One Property, Massive Performance Win","Spring Boot 4.1 adds lazy JDBC connection fetching via spring.datasource.connection-fetch. See how it cuts connection hold time from 2 seconds to 15ms.",{"slug":867,"date":868,"published":12,"tags":869,"author":16,"cover":870,"video":871,"excerpt":11,"shortDesc":865},"lazy-jdbc-connections-spring-boot-4-1","2026-06-25T09:00:00.000Z",[14,826],"lazy-jdbc-connections-spring-boot-4-1.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlsaBN1U2EB8",{"minutes":873,"text":874},15,"15 min read",{"_id":876,"path":877,"title":878,"description":879,"meta":880,"readingTime":886},"blog\u002Fblog\u002F2026\u002F06\u002F24\u002Fspring-grpc-spring-boot-4-1.md","\u002Fblog\u002F2026\u002F06\u002F24\u002Fspring-grpc-spring-boot-4-1","Getting Started with Spring gRPC in Spring Boot 4.1","Build a gRPC server and client in Spring Boot 4.1 with Spring gRPC — using @GrpcService, protobuf, and the new starters from start.spring.io.",{"slug":881,"date":882,"published":12,"tags":883,"author":16,"cover":884,"video":885,"excerpt":11,"shortDesc":879},"spring-grpc-spring-boot-4-1","2026-06-24T09:00:00.000Z",[],"spring-grpc-spring-boot-4-1.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMPHuBNqbYPM",{"minutes":859,"text":860},{"_id":888,"path":889,"title":890,"description":891,"meta":892,"readingTime":899},"blog\u002Fblog\u002F2026\u002F05\u002F20\u002Fspring-modulith-externalized-events.md","\u002Fblog\u002F2026\u002F05\u002F20\u002Fspring-modulith-externalized-events","Spring Modulith Externalized Events: Publishing Events to Kafka","Learn how to externalize Spring Modulith application events to Apache Kafka so other systems can react to changes happening inside your modular monolith.",{"slug":893,"date":894,"published":12,"tags":895,"author":16,"cover":897,"video":898,"excerpt":11,"shortDesc":891},"spring-modulith-externalized-events","2026-05-20T09:00:00.000Z",[896],"Spring Modulith","spring-modulith-externalized-events.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F8sJIWwc7Jss",{"minutes":652,"text":653},{"_id":901,"path":902,"title":903,"description":904,"meta":905,"readingTime":913},"blog\u002Fblog\u002F2026\u002F05\u002F18\u002Fspring-boot-kafka-in-10-minutes-your-first-message.md","\u002Fblog\u002F2026\u002F05\u002F18\u002Fspring-boot-kafka-in-10-minutes-your-first-message","Spring Boot + Kafka in 10 Minutes: Sending Your First Message","Produce and consume your first Apache Kafka message with Spring Boot. Covers Docker Compose, KafkaTemplate, @KafkaListener, and Embedded Kafka for tests.",{"slug":906,"date":907,"published":12,"tags":908,"author":16,"cover":911,"video":912,"excerpt":11,"shortDesc":904},"spring-boot-kafka-quick-start","2026-05-18T08:00:00.000Z",[14,909,910],"Apache Kafka","Spring for Apache Kafka","spring-boot-kafka-in-10-minutes-your-first-message.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F5XW3f_39ipY",{"minutes":830,"text":831},{"_id":915,"path":916,"title":917,"description":918,"meta":919,"readingTime":925},"blog\u002Fblog\u002F2026\u002F05\u002F14\u002Fspring-modulith-durable-events.md","\u002Fblog\u002F2026\u002F05\u002F14\u002Fspring-modulith-durable-events","Spring Modulith Durable Events: Reliable Event Processing Without a Message Broker","Learn how Spring Modulith's event publication registry persists and replays failed events across restarts, giving you a transactional outbox with no message broker.",{"slug":920,"date":921,"published":12,"tags":922,"author":16,"cover":923,"video":924,"excerpt":11,"shortDesc":918},"spring-modulith-durable-events","2026-05-14T09:00:00.000Z",[14,896],"spring-modulith-durable-events.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKLX9ulb2AfM",{"minutes":636,"text":637},{"_id":927,"path":928,"title":929,"description":930,"meta":931,"readingTime":938},"blog\u002Fblog\u002F2026\u002F04\u002F30\u002Fintroduction-to-spring-modulith.md","\u002Fblog\u002F2026\u002F04\u002F30\u002Fintroduction-to-spring-modulith","Introduction to Spring Modulith: Building Modular Monoliths with Spring Boot","Learn how Spring Modulith helps you build a modular monolith in Spring Boot with enforced module boundaries, application events, and verified architecture.",{"slug":932,"date":933,"published":12,"tags":934,"author":16,"cover":936,"video":937,"excerpt":11,"shortDesc":930},"introduction-to-spring-modulith","2026-04-30T09:00:00.000Z",[14,896,632,935],"Modular Monolith","introduction-to-spring-modulith.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxHlDyKVyvig",{"minutes":939,"text":940},22,"22 min read",{"_id":942,"path":943,"title":944,"description":945,"meta":946,"readingTime":953},"blog\u002Fblog\u002F2026\u002F04\u002F10\u002Fembabel-tools-mcp.md","\u002Fblog\u002F2026\u002F04\u002F10\u002Fembabel-tools-mcp","Embabel MCP Servers and Tools for Agentic Flows on the JVM","Add tools and MCP servers to your Embabel agents in Java. Build a blog writing agent that researches topics, calculates reading time, and generates front matter.",{"slug":947,"date":948,"published":12,"tags":949,"author":11,"cover":951,"video":952,"excerpt":11,"shortDesc":945},"embabel-mcp-servers-and-tools","2026-04-10T08:00:00.000Z",[631,950,632],"Embabel","embabel_tools_mcp.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F2mGr7kdstJs",{"minutes":711,"text":712},{"_id":955,"path":956,"title":957,"description":958,"meta":959,"readingTime":965},"blog\u002Fblog\u002F2026\u002F04\u002F02\u002Fembabel-first-look.md","\u002Fblog\u002F2026\u002F04\u002F02\u002Fembabel-first-look","Embabel First Look: Building Agentic Flows on the JVM","A first look at Embabel, Rod Johnson's framework for building agentic AI flows on the JVM. Build a blog writing agent using goal-oriented action planning (GOAP).",{"slug":960,"date":961,"published":12,"tags":962,"author":11,"cover":963,"video":964,"excerpt":11,"shortDesc":958},"embabel-first-look","2026-04-02T08:00:00.000Z",[631,632],"EmbabelFirstLook.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FG5VDQCZu6t0",{"minutes":636,"text":637},{"_id":967,"path":968,"title":969,"description":970,"meta":971,"readingTime":978},"blog\u002Fblog\u002F2026\u002F04\u002F01\u002Fgraphql-for-java-developers-course.md","\u002Fblog\u002F2026\u002F04\u002F01\u002Fgraphql-for-java-developers-course","GraphQL for Java Developers with Spring Boot","Build GraphQL APIs in Java with Spring Boot 4 and Spring for GraphQL. A free course covering schema-first design, batch loading, unions, and AOT repositories.",{"slug":972,"date":973,"published":12,"tags":974,"author":16,"cover":976,"video":977,"excerpt":11,"shortDesc":970},"getting-started-with-graphql-for-java-developers","2026-04-01T08:00:00.000Z",[14,632,975],"GraphQL","graphql-java-developers-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxZSv67a9OYA",{"minutes":979,"text":980},33,"33 min read",{"_id":982,"path":983,"title":984,"description":985,"meta":986,"readingTime":992},"blog\u002Fblog\u002F2026\u002F03\u002F31\u002Fsprig-build-me-a-coding-agent.md","\u002Fblog\u002F2026\u002F03\u002F31\u002Fsprig-build-me-a-coding-agent","Spring, Build Me a Coding Agent","Build an autonomous coding agent in Spring AI with the Spring AI Agent Utils library. This tutorial adds file system tools, shell commands, and agent skills.",{"slug":987,"date":988,"published":12,"tags":989,"author":16,"cover":990,"video":991,"excerpt":11,"shortDesc":985},"spring-building-me-a-coding-agent","2026-03-31T08:00:00.000Z",[631,14,632],".\u002Fcoding_agent_cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FP8s65qu-LZI",{"minutes":993,"text":994},26,"26 min read",{"_id":996,"path":997,"title":998,"description":999,"meta":1000,"readingTime":1006},"blog\u002Fblog\u002F2026\u002F03\u002F27\u002Fspring-ai-deep-research-agent.md","\u002Fblog\u002F2026\u002F03\u002F27\u002Fspring-ai-deep-research-agent","Spring AI Deep Research Agent","AI Agent Search",{"slug":1001,"date":1002,"published":12,"tags":1003,"author":16,"cover":1004,"video":1005,"excerpt":11,"shortDesc":999},"spring-ai-deep-research-agent","2026-03-27T09:00:00.000Z",[614],"spring-ai-deep-research-agent.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F_amdeuCM-aY",{"minutes":636,"text":637},{"_id":1008,"path":1009,"title":1010,"description":1011,"meta":1012,"readingTime":1019},"blog\u002Fblog\u002F2026\u002F03\u002F26\u002Frest-client-error-handling.md","\u002Fblog\u002F2026\u002F03\u002F26\u002Frest-client-error-handling","Getting Started with Error Handling in the RestClient","Learn best practices for error handling with Spring's RestClient, including global exception handlers, custom exceptions, Problem Detail responses, and built-in retry with resilience methods in Spring Framework 7.",{"slug":1013,"date":1014,"published":12,"tags":1015,"author":16,"cover":1017,"video":1018,"excerpt":11,"shortDesc":1011},"rest-client-error-handling","2026-03-26T09:00:00.000Z",[14,15,1016,632],"REST Client","rest-client-error-handling.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMuYzEZk6-zI",{"minutes":830,"text":831},{"_id":1021,"path":1022,"title":1023,"description":1024,"meta":1025,"readingTime":1030},"blog\u002Fblog\u002F2026\u002F03\u002F25\u002Fbrowswerbase-spring-boot-starter.md","\u002Fblog\u002F2026\u002F03\u002F25\u002Fbrowswerbase-spring-boot-starter","Giving Your Spring AI Agents a Real Browser with the Browserbase Spring Boot Starter","Most AI agents can search the web. But what happens when they need to actually use it? I built a Spring Boot Starter for Browserbase that gives your agents a real, headless browser in three lines of configuration, plus a deep research agent to show it off.",{"slug":1026,"date":1027,"published":12,"tags":1028,"author":16,"cover":1029,"video":11,"excerpt":11,"shortDesc":1024},"browserbase-spring-boot-starter","2026-03-25T08:00:00.000Z",[14,631],"browswerbase_spring_boot_starter_cover.png",{"minutes":666,"text":667},{"_id":1032,"path":1033,"title":1034,"description":1035,"meta":1036,"readingTime":1042},"blog\u002Fblog\u002F2026\u002F03\u002F20\u002Fjdk-26-final-means-final.md","\u002Fblog\u002F2026\u002F03\u002F20\u002Fjdk-26-final-means-final","JEP 500: Prepare to Make Final Mean Final in JDK 26","JDK 26 introduces JEP 500, which warns developers when final fields are mutated through reflection. Here's what this means for your Java code and how to prepare for the future.",{"slug":1037,"date":1038,"published":12,"tags":1039,"author":16,"cover":1040,"video":1041,"excerpt":11,"shortDesc":1035},"jdk-26-final-means-final","2026-03-20T10:00:00.000Z",[632],"java-26-final-means-final.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fj-y0m6j6TBc",{"minutes":620,"text":621},{"_id":1044,"path":1045,"title":1046,"description":1047,"meta":1048,"readingTime":1054},"blog\u002Fblog\u002F2026\u002F03\u002F14\u002Fspring-initializr-tui.md","\u002Fblog\u002F2026\u002F03\u002F14\u002Fspring-initializr-tui","Building a Spring Initializr Terminal UI with Java","How I built a terminal user interface for the Spring Initializr using Tambu UI, a new Java TUI framework, and GraalVM native images to streamline my development workflow.",{"slug":1049,"date":1050,"published":12,"tags":1051,"author":16,"cover":1052,"video":1053,"excerpt":11,"shortDesc":1047},"spring-initializr-tui","2026-03-14T10:00:00.000Z",[632,14],"spring-init-tui-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJ9C2MiQTIYs",{"minutes":845,"text":846},{"_id":1056,"path":1057,"title":1058,"description":1059,"meta":1060,"readingTime":1066},"blog\u002Fblog\u002F2026\u002F02\u002F08\u002Fspring-ai-prompt-caching.md","\u002Fblog\u002F2026\u002F02\u002F08\u002Fspring-ai-prompt-caching","Spring AI Prompt Caching: Stop Wasting Money on Repeated Tokens","Spring AI prompt caching cuts your Anthropic Claude API costs. Use AnthropicCacheStrategy to cache system prompts and tools that don't change between requests.",{"slug":1061,"date":1062,"published":12,"tags":1063,"author":16,"cover":1064,"video":1065,"excerpt":11,"shortDesc":1059},"spring-ai-prompt-caching","2026-02-08T09:00:00.000Z",[631],"spring-ai-prompt-caching.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FeYb7BKW4QcU",{"minutes":724,"text":725},{"_id":1068,"path":1069,"title":1070,"description":1071,"meta":1072,"readingTime":1078},"blog\u002Fblog\u002F2026\u002F02\u002F05\u002Fopenai-codex-first-look.md","\u002Fblog\u002F2026\u002F02\u002F05\u002Fopenai-codex-first-look","I Tried OpenAI's New Codex Agent. Here are my First Impressions (It's Really Good)","OpenAI released Codex, a new GUI for their coding agent. I put it to the test by building a vending machine CLI application in Java 25 with Maven, JUnit 6, and JSpecify null safety annotations.",{"slug":1073,"date":1074,"published":12,"tags":1075,"author":16,"cover":1076,"video":1077,"excerpt":11,"shortDesc":1071},"openai-codex-first-look","2026-02-05T09:00:00.000Z",[632,614],"codex_thumbnail.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FQ44TPEtNcNo",{"minutes":845,"text":846},{"_id":1080,"path":1081,"title":1082,"description":1083,"meta":1084,"readingTime":1089},"blog\u002Fblog\u002F2026\u002F02\u002F05\u002Fralph-loop.md","\u002Fblog\u002F2026\u002F02\u002F05\u002Fralph-loop","The Ralph Loop: Automate AI Coding Tasks in Java","The Ralph Loop is a bash script that runs your AI coding agent with a fresh context every iteration. Here's how it works and how I used it to build a Java CLI.",{"slug":1085,"date":1074,"published":12,"tags":1086,"author":16,"cover":1087,"video":1088,"excerpt":11,"shortDesc":1083},"ralph-loop",[614,632],"ralph-loop.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FCV97l0GkPHo",{"minutes":711,"text":712},{"_id":1091,"path":1092,"title":1093,"description":1094,"meta":1095,"readingTime":1102},"blog\u002Fblog\u002F2025\u002F12\u002F23\u002Fopentelemetry-spring-boot.md","\u002Fblog\u002F2025\u002F12\u002F23\u002Fopentelemetry-spring-boot","OpenTelemetry with Spring Boot 4: The New Starter","Learn how to use the new spring-boot-starter-opentelemetry in Spring Boot 4 to add observability with traces, metrics, and logs—no Actuator required.",{"slug":1096,"date":1097,"published":12,"tags":1098,"author":16,"cover":1100,"video":1101,"excerpt":11,"shortDesc":1094},"opentelemetry-spring-boot","2025-12-23T09:00:00.000Z",[14,1099],"Observability","spring-boot-open-telemetry.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6_Y41z7OIv8",{"minutes":683,"text":684},{"_id":1104,"path":1105,"title":1106,"description":1107,"meta":1108,"readingTime":1115},"blog\u002Fblog\u002F2025\u002F12\u002F18\u002Fspring-boot-4-rest-api.md","\u002Fblog\u002F2025\u002F12\u002F18\u002Fspring-boot-4-rest-api","Building a Spring Boot 4 REST API the Fast Way","Learn how to build a REST API with Spring Boot 4 in minutes. This tutorial shows you how to create CRUD endpoints using Java records and the @RestController annotation.",{"slug":1109,"date":1110,"published":12,"tags":1111,"author":16,"cover":1113,"video":1114,"excerpt":11,"shortDesc":1107},"spring-boot-4-rest-api","2025-12-18T09:00:00.000Z",[14,632,1112],"REST API","spring-boot-rest-api-easy.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FklnxzL8oQdM",{"minutes":666,"text":667},{"_id":1117,"path":1118,"title":1119,"description":1120,"meta":1121,"readingTime":1127},"blog\u002Fblog\u002F2025\u002F12\u002F17\u002Floading-spring-resources.md","\u002Fblog\u002F2025\u002F12\u002F17\u002Floading-spring-resources","Loading Resources in Spring Boot","Learn how to load resources in Spring Boot using the Resource interface. This tutorial covers three approaches for loading files from the classpath, filesystem, and URLs.",{"slug":1122,"date":1123,"published":12,"tags":1124,"author":16,"cover":1125,"video":1126,"excerpt":11,"shortDesc":1120},"loading-spring-resources","2025-12-17T09:00:00.000Z",[14,15],"spring_resources_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FHmcgwj65Unw",{"minutes":666,"text":667},{"_id":1129,"path":1130,"title":1131,"description":1132,"meta":1133,"readingTime":1140},"blog\u002Fblog\u002F2025\u002F12\u002F16\u002Fspring-security-7-multi-factor-authentication.md","\u002Fblog\u002F2025\u002F12\u002F16\u002Fspring-security-7-multi-factor-authentication","Spring Security 7 Multi-Factor Authentication: Complete Tutorial with @EnableMultiFactorAuthentication","Learn how to implement multi-factor authentication (MFA) in Spring Boot 4 using Spring Security 7's new @EnableMultiFactorAuthentication annotation. Step-by-step tutorial with one-time token login and custom PIN codes.",{"slug":1134,"date":1135,"published":12,"tags":1136,"author":16,"cover":1138,"video":1139,"excerpt":11,"shortDesc":1132},"spring-security-7-multi-factor-authentication","2025-12-16T09:00:00.000Z",[14,1137],"Spring Security","spring_security_mfa_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKmNAqlaKwjw",{"minutes":1141,"text":1142},28,"28 min read",{"_id":1144,"path":1145,"title":1146,"description":1147,"meta":1148,"readingTime":1153},"blog\u002Fblog\u002F2025\u002F12\u002F12\u002Fspring-boot-4-modularization.md","\u002Fblog\u002F2025\u002F12\u002F12\u002Fspring-boot-4-modularization","Spring Boot 4 Modularization: Fix Missing Auto-Configuration","Spring Boot 4 broke your auto-configuration? Learn which modular starters you now need—Flyway, H2, and the test starters behind @AutoConfigureMockMvc.",{"slug":1149,"date":1150,"published":12,"tags":1151,"author":16,"cover":11,"video":1152,"excerpt":11,"shortDesc":1147},"spring-boot-4-modularization","2025-12-12T09:00:00.000Z",[14,735,632],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkTLuhE7_jGU",{"minutes":724,"text":725},{"_id":1155,"path":1156,"title":1157,"description":1158,"meta":1159,"readingTime":1165},"blog\u002Fblog\u002F2025\u002F12\u002F10\u002Fmock-vs-rest.md","\u002Fblog\u002F2025\u002F12\u002F10\u002Fmock-vs-rest","MockMvcTester vs RestTestClient: Which one Should You Use in Spring Boot 4?","A comparison of MockMvcTester and RestTestClient for testing Spring Boot web applications, exploring when to use each approach and their key differences.",{"slug":1160,"date":1161,"published":12,"tags":1162,"author":16,"cover":1163,"video":1164,"excerpt":11,"shortDesc":1158},"mock-vs-rest","2025-12-10T09:00:00.000Z",[14],".\u002Fmock-vs-rest.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxWcqvrpj2PM",{"minutes":1166,"text":1167},23,"23 min read",{"_id":1169,"path":1170,"title":1171,"description":1172,"meta":1173,"readingTime":1180},"blog\u002Fblog\u002F2025\u002F12\u002F05\u002Fjms-client.md","\u002Fblog\u002F2025\u002F12\u002F05\u002Fjms-client","Spring JMS Client: A Complete Guide to JmsClient in Spring Boot 4","Master the Spring JMS Client with this complete Spring Boot 4 JmsClient tutorial. Learn when to choose JMS over Kafka, configure message conversion, and send messages using Spring's fluent API.",{"slug":1174,"date":1175,"published":12,"tags":1176,"author":16,"cover":1178,"video":1179,"excerpt":11,"shortDesc":1172},"jms-client","2025-12-05T09:00:00.000Z",[632,14,1177],"JMS",".\u002Fjms_client_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F91xVrWlzIe4",{"minutes":652,"text":653},{"_id":1182,"path":1183,"title":1184,"description":1185,"meta":1186,"readingTime":1191},"blog\u002Fblog\u002F2025\u002F11\u002F25\u002Fspring-data-aot-repositories.md","\u002Fblog\u002F2025\u002F11\u002F25\u002Fspring-data-aot-repositories","Spring Data AOT Repositories: Faster Startup and Build-Time Query Validation","Learn how Spring Data AOT Repositories move query processing from runtime to compile time, reducing startup times and memory usage, plus how to validate repository methods at build time.",{"slug":1187,"date":1188,"published":12,"tags":1189,"author":16,"cover":1190,"video":11,"excerpt":11,"shortDesc":1185},"spring-data-aot-repositories","2025-11-25T10:00:00.000Z",[14,826],"spring-data-aot-repositories.png",{"minutes":873,"text":874},{"_id":1193,"path":1194,"title":1195,"description":1196,"meta":1197,"readingTime":1203},"blog\u002Fblog\u002F2025\u002F11\u002F24\u002Fspring-boot-4-is-here.md","\u002Fblog\u002F2025\u002F11\u002F24\u002Fspring-boot-4-is-here","Spring Boot 4: Everything You Need to Know (4.0 and 4.1)","Everything new in Spring Boot 4 and 4.1, from null safety and HTTP interfaces to modularization and gRPC, plus the upgrade path from Spring Boot 3.",{"slug":1198,"date":1199,"published":12,"tags":1200,"author":16,"cover":1202,"video":11,"excerpt":11,"shortDesc":1196},"spring-boot-4-is-here","2025-11-24T09:00:00.000Z",[14,735,1201,632],"Spring","spring-boot-4-is-here.png",{"minutes":979,"text":980},{"_id":1205,"path":1206,"title":1207,"description":1208,"meta":1209,"readingTime":1215},"blog\u002Fblog\u002F2025\u002F11\u002F13\u002Fspring-boot-4-native-retry-support.md","\u002Fblog\u002F2025\u002F11\u002F13\u002Fspring-boot-4-native-retry-support","Native Retry Support in Spring Boot 4: No External Dependencies Required","Spring Boot 4 includes native retry support with @Retryable, RetryTemplate, and @ConcurrencyLimit. Learn how to add resilience without the spring-retry dependency.",{"slug":1210,"date":1211,"published":12,"tags":1212,"author":16,"cover":1213,"video":1214,"excerpt":11,"shortDesc":1208},"spring-boot-4-native-retry-support","2025-11-13T09:00:00.000Z",[14,735,632],"spring_resilience_features_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FCT1wGTwOfg0",{"minutes":1141,"text":1142},{"_id":1217,"path":1218,"title":1219,"description":1220,"meta":1221,"readingTime":1227},"blog\u002Fblog\u002F2025\u002F11\u002F10\u002Fjackson-3-spring-boot-4.md","\u002Fblog\u002F2025\u002F11\u002F10\u002Fjackson-3-spring-boot-4","Jackson 3 in Spring Boot 4: JsonMapper, JSON Views, and What's Changed","Learn how to use Jackson 3 in Spring Boot 4 with the new JsonMapper, immutable configuration, unchecked exceptions, and JSON Views with the hint() method.",{"slug":1222,"date":1223,"published":12,"tags":1224,"author":16,"cover":1225,"video":1226,"excerpt":11,"shortDesc":1220},"jackson-3-spring-boot-4","2025-11-10T09:00:00.000Z",[14,735],"jackson_3_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4cvP_qroLH4",{"minutes":1141,"text":1142},{"_id":1229,"path":1230,"title":1231,"description":1232,"meta":1233,"readingTime":1239},"blog\u002Fblog\u002F2025\u002F11\u002F06\u002Fhttp-interfaces-spring-boot-4.md","\u002Fblog\u002F2025\u002F11\u002F06\u002Fhttp-interfaces-spring-boot-4","HTTP Interfaces in Spring Boot 4: Say Goodbye to Boilerplate","Learn how HTTP interfaces let you define declarative HTTP clients in Spring Boot, and discover how Spring Framework 7 eliminates the configuration boilerplate with @ImportHttpServices.",{"slug":1234,"date":1235,"published":12,"tags":1236,"author":16,"cover":1237,"video":1238,"excerpt":11,"shortDesc":1232},"http-interfaces-spring-boot-4","2025-11-06T09:00:00.000Z",[14,735,15],"http_interfaces_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTEd5e4Thu7M",{"minutes":666,"text":667},{"_id":1241,"path":1242,"title":1243,"description":1244,"meta":1245,"readingTime":1250},"blog\u002Fblog\u002F2025\u002F11\u002F05\u002Fspring-boot-4-null-safety.md","\u002Fblog\u002F2025\u002F11\u002F05\u002Fspring-boot-4-null-safety","Stop NullPointerExceptions Before Production with Spring Boot 4's Null Safety","Discover how Spring Boot 4 and JSpecify annotations catch NullPointerExceptions at compile-time instead of runtime. Learn to implement @NullMarked and @Nullable for bulletproof Java code with practical examples.",{"slug":1246,"date":1247,"published":12,"tags":1248,"author":16,"cover":11,"video":1249,"excerpt":11,"shortDesc":1244},"spring-boot-4-null-safety","2025-11-05T09:00:00.000Z",[632,14,735],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FQlGnaRoujL8",{"minutes":939,"text":940},{"_id":1252,"path":1253,"title":1254,"description":1255,"meta":1256,"readingTime":1263},"blog\u002Fblog\u002F2025\u002F11\u002F01\u002Fprogrammatic-bean-registration.md","\u002Fblog\u002F2025\u002F11\u002F01\u002Fprogrammatic-bean-registration","Spring Boot 4's Bean Registrar: A Cleaner Way to Register Beans Programmatically","Learn how Spring Boot 4's new BeanRegistrar interface simplifies programmatic bean registration in Spring Framework 7. This tutorial demonstrates dynamic bean creation based on environment properties, conditional registration with complex logic, and performance optimization techniques. Discover when to use BeanRegistrar vs @Bean annotations with practical code examples and testing strategies for your Spring applications.",{"slug":1257,"date":1258,"published":12,"tags":1259,"author":16,"cover":1260,"video":1261,"excerpt":11,"shortDesc":1262},"programmatic-bean-registration","2025-11-01T09:00:00.000Z",[14,735,15],"spring_boot_4_bean_registrar.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fyh760wTFL_4","Learn how Spring Boot 4's new BeanRegistrar interface simplifies programmatic bean registration in Spring Framework 7. This tutorial demonstrates dynamic bean creation based on environment properties, conditional registration with complex logic, and performance optimization techniques. Discover when to use BeanRegistrar vs @Bean annotations with practical code examples and testing strategies...",{"minutes":683,"text":684},{"_id":1265,"path":1266,"title":1267,"description":1268,"meta":1269,"readingTime":1275},"blog\u002Fblog\u002F2025\u002F10\u002F30\u002Fspring-framework-7-rest-test-client.md","\u002Fblog\u002F2025\u002F10\u002F30\u002Fspring-framework-7-rest-test-client","Testing Spring REST APIs with RestTestClient: A Complete Guide","Explore the new Rest Test Client in Spring Framework 7, a modern replacement for RestTemplate that provides a fluent API for testing REST APIs with improved type safety and better integration with modern testing practices.",{"slug":1270,"date":1271,"published":12,"tags":1272,"author":16,"cover":1274,"video":11,"excerpt":11,"shortDesc":1268},"spring-framework-7-rest-test-client","2025-10-30T09:00:00.000Z",[15,14,1273],"Testing","spring_boot_4_rest-test-client.png",{"minutes":939,"text":940},{"_id":1277,"path":1278,"title":1279,"description":1280,"meta":1281,"readingTime":1287},"blog\u002Fblog\u002F2025\u002F10\u002F28\u002Fspring-ai-mcp-client.md","\u002Fblog\u002F2025\u002F10\u002F28\u002Fspring-ai-mcp-client","Building MCP Clients with Spring AI: Augmenting LLMs with Custom Context","Learn how to build MCP (Model Context Protocol) clients using Spring AI to augment Large Language Models with custom context and functionality for your applications.",{"slug":1282,"date":1283,"published":12,"tags":1284,"author":16,"cover":1285,"video":1286,"excerpt":11,"shortDesc":1280},"spring-ai-mcp-client","2025-10-28T09:00:00.000Z",[631],"spring_ai_mcp_client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTSFkdlreRMQ",{"minutes":724,"text":725},{"_id":1289,"path":1290,"title":1291,"description":1292,"meta":1293,"readingTime":1298},"blog\u002Fblog\u002F2025\u002F09\u002F30\u002Fapi-versioning-with-graphql.md","\u002Fblog\u002F2025\u002F09\u002F30\u002Fapi-versioning-with-graphql","Evolving your API without Versioning in GraphQL","Explore modern approaches to API versioning in GraphQL, including schema evolution strategies, deprecation patterns, and best practices for maintaining backward compatibility while evolving your API.",{"slug":1294,"date":1295,"published":12,"tags":1296,"author":16,"cover":1297,"video":11,"excerpt":11,"shortDesc":1292},"api-versioning-with-graphql","2025-09-30T09:00:00.000Z",[14,975],"api_versioning_graphql.png",{"minutes":873,"text":874},{"_id":1300,"path":1301,"title":1302,"description":1303,"meta":1304,"readingTime":1309},"blog\u002Fblog\u002F2025\u002F09\u002F25\u002Fspring-boot-4-api-versioning.md","\u002Fblog\u002F2025\u002F09\u002F25\u002Fspring-boot-4-api-versioning","First-Class API Versioning in Spring Boot 4","Learn how to implement API versioning strategies in Spring Boot 4 applications, including best practices for managing backwards compatibility and evolution of your REST APIs.",{"slug":1305,"date":1306,"published":12,"tags":1307,"author":16,"cover":1308,"video":202,"excerpt":11,"shortDesc":1303},"spring-boot-4-api-versioning","2025-09-25T09:00:00.000Z",[14,735,15],"spring_boot_4_api_versioning.png",{"minutes":1310,"text":1311},25,"25 min read",{"_id":1313,"path":1314,"title":1315,"description":1316,"meta":1317,"readingTime":1322},"blog\u002Fblog\u002F2025\u002F09\u002F24\u002Fcyc-mcp-server-spring-ai.md","\u002Fblog\u002F2025\u002F09\u002F24\u002Fcyc-mcp-server-spring-ai","My CYC 2025 Demo: Why Building MCP Servers in Java Just Got Ridiculously Simple","Learn how Spring AI 1.1.0-M2 makes building MCP servers in Java incredibly simple with just annotations. No callbacks, no complex setup. Includes complete code from my Commit Your Code 2025 conference demo, showing how to expose your Java application's data to Claude and other AI assistants.",{"slug":1318,"date":1319,"published":12,"tags":1320,"author":16,"cover":1321,"video":11,"excerpt":11,"shortDesc":1316},"cyc-mcp-server-spring-ai","2025-09-24T09:00:00.000Z",[1201,631,614,813,632],"spring_ai_mcp_servers_cover.png",{"minutes":636,"text":637},{"_id":1324,"path":1325,"title":1326,"description":1327,"meta":1328,"readingTime":1333},"blog\u002Fblog\u002F2025\u002F09\u002F17\u002Fspring-boot-3-features.md","\u002Fblog\u002F2025\u002F09\u002F17\u002Fspring-boot-3-features","Spring Boot 3.x Features: A Complete Guide (3.0 to 3.5)","Every major Spring Boot 3.x feature from 3.0 to 3.5—Java 17, GraalVM native images, virtual threads, Docker Compose, Testcontainers, and structured logging.",{"slug":1329,"date":1330,"published":12,"tags":1331,"author":16,"cover":1332,"video":11,"excerpt":11,"shortDesc":1327},"spring-boot-3-features","2025-09-17T09:00:00.000Z",[14,632,15],"spring_boot_3_features_cover.png",{"minutes":1334,"text":1335},52,"52 min read",{"_id":1337,"path":1338,"title":1339,"description":1340,"meta":1341,"readingTime":1348},"blog\u002Fblog\u002F2025\u002F04\u002F09\u002Fjdk-24-virtual-threads-without-pinning.md","\u002Fblog\u002F2025\u002F04\u002F09\u002Fjdk-24-virtual-threads-without-pinning","JDK 24's Major Improvement: Virtual Threads Without Pinning","Discover JDK 24's breakthrough enhancement that eliminates virtual thread pinning with synchronized blocks and methods. This comprehensive guide explores how this change revolutionizes Java concurrency, dramatically improving scalability for Spring Boot applications with legacy synchronized code. You'll learn about the technical details of thread pinning, see practical performance comparisons, and get hands-on examples showing how to leverage this feature in real-world applications for maximum throughput and efficiency.",{"slug":1342,"date":1343,"published":12,"tags":1344,"author":16,"cover":1345,"video":1346,"excerpt":11,"shortDesc":1347},"jdk-24-virtual-threads-without-pinning","2025-04-09T17:00:00.000Z",[632,1201],".\u002Fjdk_24_virtual_threads_pinning_cover_image.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FV4gsffMge7E","Discover JDK 24's breakthrough enhancement that eliminates virtual thread pinning with synchronized blocks and methods. This comprehensive guide explores how this change revolutionizes Java concurrency, dramatically improving scalability for Spring Boot applications with legacy synchronized code. You'll learn about the technical details of thread pinning, see practical performance comparisons, and...",{"minutes":830,"text":831},{"_id":1350,"path":1351,"title":1352,"description":1353,"meta":1354,"readingTime":1361},"blog\u002Fblog\u002F2025\u002F04\u002F07\u002Fdocker-model-runner.md","\u002Fblog\u002F2025\u002F04\u002F07\u002Fdocker-model-runner","Running AI Models Locally with Docker and Spring AI","Master Docker Desktop's revolutionary Model Runner feature and discover how to build privacy-first AI applications with Spring Boot. This complete tutorial shows you how to run powerful open-source AI models like Gemma locally on your machine, eliminating API costs, protecting sensitive data, and simplifying development workflows. You'll get step-by-step instructions for setting up local AI models, integrating with Spring AI, and building production-ready applications that respect privacy while delivering exceptional AI capabilities without monthly subscription fees.",{"slug":1355,"date":1356,"published":12,"tags":1357,"author":16,"cover":1358,"video":1359,"excerpt":11,"shortDesc":1360},"docker-model-runner","2025-04-07T17:00:00.000Z",[631],".\u002Frunning_with_docker_and_spring_ai_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6E6JFLMHcoQ","Master Docker Desktop's revolutionary Model Runner feature and discover how to build privacy-first AI applications with Spring Boot. This complete tutorial shows you how to run powerful open-source AI models like Gemma locally on your machine, eliminating API costs, protecting sensitive data, and simplifying development workflows. You'll get step-by-step instructions...",{"minutes":724,"text":725},{"_id":1363,"path":1364,"title":1365,"description":1366,"meta":1367,"readingTime":1372},"blog\u002Fblog\u002F2025\u002F03\u002F26\u002Fcreating-your-first-mcp-server-java.md","\u002Fblog\u002F2025\u002F03\u002F26\u002Fcreating-your-first-mcp-server-java","Creating Your First MCP Server in Java with Spring Boot","Build your first Model Context Protocol (MCP) server in Java using Spring Boot and Spring AI, exposing tools that let Claude and other AI models call your code.",{"slug":1368,"date":1369,"published":12,"tags":1370,"author":16,"cover":11,"video":1371,"excerpt":11,"shortDesc":1366},"creating-your-first-mcp-server-java","2025-03-26T17:00:00.000Z",[632,1201,813],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fw5YVHG1j3Co",{"minutes":711,"text":712},{"_id":1374,"path":1375,"title":1376,"description":1377,"meta":1378,"readingTime":1382},"blog\u002Fblog\u002F2025\u002F03\u002F21\u002Fstream-gatherers.md","\u002Fblog\u002F2025\u002F03\u002F21\u002Fstream-gatherers","Stream Gatherers in JDK 24: Building Custom Intermediate Operations for the Stream API","Discover how the new Stream Gatherers feature in JDK 24 provides a more elegant solution for processing blog content compared to traditional stream operations.",{"slug":1379,"date":1380,"published":12,"tags":1381,"author":16,"cover":11,"video":11,"excerpt":11,"shortDesc":1377},"stream-gatherers","2025-03-21T09:00:00.000Z",[632],{"minutes":1383,"text":1384},31,"31 min read",{"_id":1386,"path":1387,"title":1388,"description":1389,"meta":1390,"readingTime":1395},"blog\u002Fblog\u002F2025\u002F03\u002F11\u002Fmodel-context-protocol-introduction.md","\u002Fblog\u002F2025\u002F03\u002F11\u002Fmodel-context-protocol-introduction","Supercharge Your LLM Applications with Model Context Protocol (MCP)","Learn how Model Context Protocol (MCP) enables LLMs to access external data sources and tools, with practical implementation guides for getting started today.",{"slug":1391,"date":1392,"published":12,"tags":1393,"author":16,"cover":11,"video":1394,"excerpt":11,"shortDesc":1389},"model-context-protocol-introduction","2025-03-11T17:00:00.000Z",[631,813],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FnNLshWCoe0o",{"minutes":724,"text":725},{"_id":1397,"path":1398,"title":1399,"description":1400,"meta":1401,"readingTime":1405},"blog\u002Fblog\u002F2025\u002F02\u002F27\u002Fai-powered-dev-hacks-confoo-2025.md","\u002Fblog\u002F2025\u002F02\u002F27\u002Fai-powered-dev-hacks-confoo-2025","AI-Powered Dev Hacks at ConFoo 2025","Recently, I had the pleasure of presenting on a topic that I'm pretty passionate about: how artificial intelligence can amplify developer productivity and creativity.",{"slug":1402,"date":1403,"published":12,"tags":1404,"author":16,"cover":11,"video":11,"excerpt":11,"shortDesc":1400},"ai-powered-dev-hacks-confoo-2025","2025-02-27T09:00:00.000Z",[614],{"minutes":1406,"text":1407},6,"6 min read",{"_id":1409,"path":1410,"title":1411,"description":1412,"meta":1413,"readingTime":1418},"blog\u002Fblog\u002F2024\u002F12\u002F02\u002Fspring-boot-graphql-query-by-example.md","\u002Fblog\u002F2024\u002F12\u002F02\u002Fspring-boot-graphql-query-by-example","Building Dynamic GraphQL APIs with Spring Boot and Query by Example","Learn how to build flexible and maintainable GraphQL APIs using Spring Boot's Query by Example support, reducing boilerplate code while enabling powerful search capabilities.",{"slug":1414,"date":1415,"published":12,"tags":1416,"author":16,"cover":11,"video":1417,"excerpt":11,"shortDesc":1412},"spring-boot-graphql-query-by-example","2024-12-02T09:00:00.000Z",[975,14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJ8vC8RflPPY",{"minutes":790,"text":791},{"_id":1420,"path":1421,"title":1422,"description":1423,"meta":1424,"readingTime":1429},"blog\u002Fblog\u002F2024\u002F11\u002F11\u002Fno-lombok.md","\u002Fblog\u002F2024\u002F11\u002F11\u002Fno-lombok","Modern Java: Why You Might Not Need Lombok Anymore","A detailed exploration of why Java developers should reconsider using Project Lombok, examining its drawbacks and modern alternatives in Java development.",{"slug":1425,"date":1426,"published":12,"tags":1427,"author":16,"cover":1428,"video":11,"excerpt":11,"shortDesc":1423},"no-lombok","2024-11-11T09:00:00.000Z",[632],".\u002Fno_lombok_cover.png",{"minutes":683,"text":684},{"_id":1431,"path":1432,"title":1433,"description":1434,"meta":1435,"readingTime":1440},"blog\u002Fblog\u002F2024\u002F11\u002F08\u002Fspring-data-jpa-query-by-example.md","\u002Fblog\u002F2024\u002F11\u002F08\u002Fspring-data-jpa-query-by-example","Query By Example in Spring Data JPA: A Clean Approach to Dynamic Queries","Learn how to simplify your Spring Data JPA queries using Query By Example (QBE) and create dynamic, type-safe queries without the boilerplate code.",{"slug":1436,"date":1437,"published":12,"tags":1438,"author":16,"cover":11,"video":1439,"excerpt":11,"shortDesc":1434},"spring-data-jpa-query-by-example","2024-11-08T17:00:00.000Z",[14,826],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FNGVWHdGNbiI",{"minutes":790,"text":791},{"_id":1442,"path":1443,"title":1444,"description":1445,"meta":1446,"readingTime":1451},"blog\u002Fblog\u002F2024\u002F11\u002F05\u002Frest-client-oauth2-support.md","\u002Fblog\u002F2024\u002F11\u002F05\u002Frest-client-oauth2-support","RestClient OAuth2 Support in Spring Security 6.4: A Complete Guide","Learn how to implement OAuth2 authentication in your Spring applications using the new RestClient OAuth2 support in Spring Security 6.4. This guide covers architecture, implementation, and best practices for secure service-to-service communication.",{"slug":1447,"date":1448,"published":12,"tags":1449,"author":16,"cover":11,"video":1450,"excerpt":11,"shortDesc":1445},"rest-client-oauth2-support","2024-11-05T17:00:00.000Z",[14,1137],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FnFKcJDpUuZ8",{"minutes":845,"text":846},{"_id":1453,"path":1454,"title":1455,"description":1456,"meta":1457,"readingTime":1462},"blog\u002Fblog\u002F2024\u002F11\u002F01\u002Fspring-ai-tokens.md","\u002Fblog\u002F2024\u002F11\u002F01\u002Fspring-ai-tokens","Understanding Tokens in Large Language Models with Spring AI","Learn how to track and manage token usage in Spring AI applications, including implementing custom response types and automated logging with AOP.",{"slug":1458,"date":1459,"published":12,"tags":1460,"author":16,"cover":11,"video":1461,"excerpt":11,"shortDesc":1456},"spring-ai-tokens","2024-11-01T17:00:00.000Z",[631],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FZUCVRppXPSc",{"minutes":859,"text":860},{"_id":1464,"path":1465,"title":1466,"description":1467,"meta":1468,"readingTime":1474},"blog\u002Fblog\u002F2024\u002F10\u002F31\u002Fspring-boot-rest-client-logging.md","\u002Fblog\u002F2024\u002F10\u002F31\u002Fspring-boot-rest-client-logging","Implementing Request\u002FResponse Logging with Spring Boot's Rest Client","Learn how to implement clean and efficient request\u002Fresponse logging for Spring Boot's Rest Client, including both inline and interceptor-based approaches.",{"slug":1469,"date":1470,"published":12,"tags":1471,"author":16,"cover":11,"video":1473,"excerpt":11,"shortDesc":1467},"spring-boot-rest-client-logging","2024-10-31T09:00:00.000Z",[14,1472],"Rest Client","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fl35P5GylXN8",{"minutes":873,"text":874},{"_id":1476,"path":1477,"title":1478,"description":1479,"meta":1480,"readingTime":1485},"blog\u002Fblog\u002F2024\u002F10\u002F29\u002Fspring-boot-environment-variables.md","\u002Fblog\u002F2024\u002F10\u002F29\u002Fspring-boot-environment-variables","Using Environment Variables in Spring Boot","Learn how to effectively manage configuration and secure sensitive data using environment variables in Spring Boot applications. This comprehensive guide covers best practices, security considerations, and practical examples.",{"slug":1481,"date":1482,"published":12,"tags":1483,"author":16,"cover":11,"video":1484,"excerpt":11,"shortDesc":1479},"spring-boot-environment-variables","2024-10-29T17:00:00.000Z",[14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FrQV76dufxz4",{"minutes":749,"text":750},{"_id":1487,"path":1488,"title":1489,"description":1490,"meta":1491,"readingTime":1497},"blog\u002Fblog\u002F2024\u002F10\u002F24\u002Fspring-boot-oauth-demo.md","\u002Fblog\u002F2024\u002F10\u002F24\u002Fspring-boot-oauth-demo","Building a Spring Security Login Form with JTE","Learn how to create a secure login form using Spring Security and JTE (Java Template Engine) with support for both traditional authentication and OAuth2 providers.",{"slug":1492,"date":1493,"published":12,"tags":1494,"author":16,"cover":1495,"video":1496,"excerpt":11,"shortDesc":1490},"spring-boot-oauth-demo","2024-10-24T17:00:00.000Z",[14,1137],".\u002Fspring-security-jte-login.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Ff1h4GkhxMp8",{"minutes":1498,"text":1499},20,"20 min read",{"_id":1501,"path":1502,"title":1503,"description":1504,"meta":1505,"readingTime":1511},"blog\u002Fblog\u002F2024\u002F10\u002F22\u002Fgetting-started-with-spring-ai-rag.md","\u002Fblog\u002F2024\u002F10\u002F22\u002Fgetting-started-with-spring-ai-rag","Getting Started with Spring AI and RAG: A Practical Guide","Learn how to build intelligent applications using Retrieval Augmented Generation (RAG) with Spring AI. This practical guide covers everything from understanding tokens and context windows to implementing a full RAG solution.",{"slug":1506,"date":1507,"published":12,"tags":1508,"author":16,"cover":11,"video":1510,"excerpt":11,"shortDesc":1504},"getting-started-with-spring-ai-rag","2024-10-22T09:00:00.000Z",[1509,678,677],"spring","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6Pgmr7xMjiY",{"minutes":790,"text":791},{"_id":1513,"path":1514,"title":1515,"description":1516,"meta":1517,"readingTime":1522},"blog\u002Fblog\u002F2024\u002F10\u002F15\u002Fai-java-developers.md","\u002Fblog\u002F2024\u002F10\u002F15\u002Fai-java-developers","Building Generative AI Applications in Java: From Simple Scripts to Spring Boot","Explore how Java developers can leverage generative AI, from basic curl commands to robust Spring Boot applications. Learn to integrate OpenAI's GPT models, use Java's HTTP client, and harness the power of Spring AI for structured output and simplified AI integration.",{"slug":1518,"date":1519,"published":12,"tags":1520,"author":16,"cover":11,"video":1521,"excerpt":11,"shortDesc":1516},"ai-java-developers","2024-10-15T09:00:00.000Z",[632,14,614],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FuoOwVWVl_eU",{"minutes":790,"text":791},{"_id":1524,"path":1525,"title":1526,"description":1527,"meta":1528,"readingTime":1533},"blog\u002Fblog\u002F2024\u002F10\u002F14\u002Fspring-ai-multiple-llms.md","\u002Fblog\u002F2024\u002F10\u002F14\u002Fspring-ai-multiple-llms","Calling Multiple LLMs with Spring AI: A Practical Guide","Learn how to integrate and call multiple Large Language Models (LLMs) like OpenAI's GPT-4 and Anthropic's Claude in a single Spring Boot application using Spring AI. This tutorial covers project setup, configuration, and implementation of separate controllers for each LLM.",{"slug":1529,"date":1530,"published":12,"tags":1531,"author":16,"cover":11,"video":1532,"excerpt":11,"shortDesc":1527},"spring-ai-multiple-llms","2024-10-14T09:00:00.000Z",[14,632,631],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FbK1MTlEDQvk",{"minutes":790,"text":791},{"_id":1535,"path":1536,"title":1537,"description":1538,"meta":1539,"readingTime":1544},"blog\u002Fblog\u002F2024\u002F10\u002F11\u002Fspring-ai-chat-memory.md","\u002Fblog\u002F2024\u002F10\u002F11\u002Fspring-ai-chat-memory","Building Intelligent Chatbots with Spring AI: Implementing Chat Memory","Learn how to create a context-aware chatbot using Spring AI and OpenAI. This tutorial covers implementing chat memory, handling token usage, and managing context window limitations for more engaging AI conversations.",{"slug":1540,"date":1541,"published":12,"tags":1542,"author":16,"cover":11,"video":1543,"excerpt":11,"shortDesc":1538},"spring-ai-chat-memory","2024-10-11T09:00:00.000Z",[14,632,631],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6VdM1MOOMrw",{"minutes":620,"text":621},{"_id":1546,"path":1547,"title":1548,"description":1549,"meta":1550,"readingTime":1555},"blog\u002Fblog\u002F2024\u002F10\u002F08\u002Fspring-ai-streaming-chatbot.md","\u002Fblog\u002F2024\u002F10\u002F08\u002Fspring-ai-streaming-chatbot","Building a Streaming Chat Bot with Spring Boot and Spring AI","Learn how to create a responsive and engaging chat bot using Spring Boot and Spring AI, featuring both traditional and streaming response capabilities for an enhanced user experience.",{"slug":1551,"date":1552,"published":12,"tags":1553,"author":16,"cover":11,"video":1554,"excerpt":11,"shortDesc":1549},"spring-ai-streaming-chatbot","2024-10-08T20:00:00.000Z",[14,632,631],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fq2p0mG4RICM",{"minutes":666,"text":667},{"_id":1557,"path":1558,"title":1559,"description":1560,"meta":1561,"readingTime":1566},"blog\u002Fblog\u002F2024\u002F10\u002F07\u002Fjte-forms.md","\u002Fblog\u002F2024\u002F10\u002F07\u002Fjte-forms","Building Dynamic Forms with Spring Boot and JTE: A Practical Guide","Learn how to create interactive web forms using Spring Boot and Java Template Engine (JTE) in this comprehensive tutorial.",{"slug":1562,"date":1563,"published":12,"tags":1564,"author":16,"cover":11,"video":1565,"excerpt":11,"shortDesc":1560},"jte-forms","2024-10-07T20:00:00.000Z",[14,632],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fifnv4kGtZgo",{"minutes":790,"text":791},{"_id":1568,"path":1569,"title":1570,"description":1571,"meta":1572,"readingTime":1577},"blog\u002Fblog\u002F2024\u002F10\u002F06\u002Fspring-boot-jte-htmx.md","\u002Fblog\u002F2024\u002F10\u002F06\u002Fspring-boot-jte-htmx","Building a Dynamic Task Manager with Spring Boot, JTE, and HTMX","Learn how to build a dynamic Task manager using Spring Boot, Java Template Engine (JTE), HTMX and Tailwind CSS.",{"slug":1573,"date":1574,"published":12,"tags":1575,"author":16,"cover":11,"video":1576,"excerpt":11,"shortDesc":1571},"spring-boot-jte-htmx","2024-10-06T20:00:00.000Z",[14,632],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkFksiDRZ824",{"minutes":711,"text":712},{"_id":1579,"path":1580,"title":1581,"description":1582,"meta":1583,"readingTime":1588},"blog\u002Fblog\u002F2024\u002F10\u002F03\u002Fjte-layouts.md","\u002Fblog\u002F2024\u002F10\u002F03\u002Fjte-layouts","Getting started with Java Template Engine (JTE) layouts in Spring Boot","Learn how to use layouts with Java Template Engine in your next Spring Boot Application",{"slug":1584,"date":1585,"published":12,"tags":1586,"author":16,"cover":11,"video":1587,"excerpt":11,"shortDesc":1582},"jte-layouts","2024-10-03T20:00:00.000Z",[14,632],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FdWe-C3-YQEg",{"minutes":620,"text":621},{"_id":1590,"path":1591,"title":1592,"description":1593,"meta":1594,"readingTime":1599},"blog\u002Fblog\u002F2024\u002F10\u002F01\u002Fhello-jte.md","\u002Fblog\u002F2024\u002F10\u002F01\u002Fhello-jte","Introducing JTE: The Latest Template Engine in Spring Boot","Explore JTE, the new Java Template Engine now available in Spring Initializer. Learn its benefits, how to get started, and why you might choose it for your next Spring Boot project.",{"slug":1595,"date":1596,"published":12,"tags":1597,"author":16,"cover":11,"video":1598,"excerpt":11,"shortDesc":1593},"hello-jte","2024-10-01T20:00:00.000Z",[14,632],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKoWgHSWA1cc",{"minutes":790,"text":791},{"_id":1601,"path":1602,"title":1603,"description":1604,"meta":1605,"readingTime":1610},"blog\u002Fblog\u002F2024\u002F09\u002F12\u002Fjdk-23-first-look.md","\u002Fblog\u002F2024\u002F09\u002F12\u002Fjdk-23-first-look","What's new in JDK 23","Explore the exciting new features and improvements coming in Java 23, including primitive types in patterns, Markdown documentation comments, and enhancements to garbage collection and concurrency.",{"slug":1606,"date":1607,"published":12,"tags":1608,"author":16,"cover":1609,"video":11,"excerpt":11,"shortDesc":1604},"jdk-23-first-look","2024-09-12T17:00:00.000Z",[677],".\u002Fjdk-23.png",{"minutes":652,"text":653},{"_id":1612,"path":1613,"title":1614,"description":1615,"meta":1616,"readingTime":1622},"blog\u002Fblog\u002F2024\u002F08\u002F07\u002Fclaude-sonnet-spring-ai.md","\u002Fblog\u002F2024\u002F08\u002F07\u002Fclaude-sonnet-spring-ai","Supercharge Your Spring Apps with AI - A Beginner's Guide to Claude 3.5 Sonnet and Spring AI","Unlock the power of artificial intelligence in your Java applications with Claude 3.5 Sonnet and Spring AI. This beginner-friendly guide walks you through integrating cutting-edge AI capabilities into your Spring projects, opening up a world of possibilities for smart, responsive applications.",{"slug":1617,"date":1618,"published":12,"tags":1619,"author":16,"cover":1621,"video":11,"excerpt":11,"shortDesc":1615},"claude-sonnet-spring-ai","2024-08-07T17:00:00.000Z",[1620,631,632],"Artificial Intelligence (AI)",".\u002Fclaude_sonnet_spring_ai_cover.png",{"minutes":859,"text":860},{"_id":1624,"path":1625,"title":1626,"description":1627,"meta":1628,"readingTime":1633},"blog\u002Fblog\u002F2024\u002F08\u002F06\u002Fclaude-sonnet-35.md","\u002Fblog\u002F2024\u002F08\u002F06\u002Fclaude-sonnet-35","Claude 3.5 Sonnet - AI Assistance with Speed and Artifacts","Claude 3.5 Sonnet, Anthropic's latest AI model, sets new benchmarks in intelligence, speed, and capabilities across various domains. This blog post explores the key features of Claude 3.5 Sonnet, including its enhanced performance and the groundbreaking Artifacts feature, which enables real-time collaboration between users and AI.",{"slug":1629,"date":1630,"published":12,"tags":1631,"author":16,"cover":1632,"video":11,"excerpt":11,"shortDesc":1627},"claude-sonnet-35","2024-08-06T17:00:00.000Z",[1620],".\u002Fclaude-sonnet-35.jpeg",{"minutes":1634,"text":1635},30,"30 min read",{"_id":1637,"path":1638,"title":1639,"description":1640,"meta":1641,"readingTime":1647},"blog\u002Fblog\u002F2024\u002F08\u002F05\u002Follama-web-ui.md","\u002Fblog\u002F2024\u002F08\u002F05\u002Follama-web-ui","Harnessing Local LLMs - A Practical Guide to Ollama and Open Web UI","This guide introduces Ollama, a tool for running large language models (LLMs) locally, and its integration with Open Web UI. It highlights the cost and security benefits of local LLM deployment, providing setup instructions for Ollama and demonstrating how to use Open Web UI for enhanced model interaction.",{"slug":1642,"date":1643,"published":12,"tags":1644,"author":16,"cover":1645,"video":1646,"excerpt":11,"shortDesc":1640},"ollama-web-ui","2024-08-05T09:00:00.000Z",[614],"ollama_web_ui.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FBzFafshQkWw",{"minutes":697,"text":698},{"_id":1649,"path":1650,"title":1651,"description":1652,"meta":1653,"readingTime":1660},"blog\u002Fblog\u002F2024\u002F08\u002F01\u002Fjava-method-references.md","\u002Fblog\u002F2024\u002F08\u002F01\u002Fjava-method-references","Method References in Java: A Beginner's Guide (Java 8+)","Learn what method references are in Java, when to use them, and all four types—static, instance, arbitrary object, and constructor—with clear :: examples.",{"slug":1654,"date":1655,"published":12,"tags":1656,"author":16,"cover":1658,"video":1659,"excerpt":11,"shortDesc":1652},"java-method-references","2024-08-01T09:00:00.000Z",[632,1657],"Functional Programming","java_method_references_with_me.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FDELCbBuCHHE",{"minutes":697,"text":698},{"_id":1662,"path":1663,"title":1664,"description":1665,"meta":1666,"readingTime":1673},"blog\u002Fblog\u002F2024\u002F07\u002F18\u002Fspring-boot-tailwind.md","\u002Fblog\u002F2024\u002F07\u002F18\u002Fspring-boot-tailwind","How to add Tailwind CSS to your Spring Boot Application","This is an example of how to use Tailwind CSS in your next Spring Boot application. If you just want to get up and running with Tailwind CSS you can use a CDN but this should only be used for prototyping because you will end up shipping a very large css file to production. In this tutorial you will learn how to introduce a build process to only use the styles you are using.",{"slug":1667,"date":1668,"published":12,"tags":1669,"author":16,"cover":1670,"video":1671,"excerpt":11,"shortDesc":1672},"spring-boot-tailwind","2024-07-18T17:00:00.000Z",[14,786],".\u002Fspring-boot-tailwind.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6_6AIzxPXvQ","This is an example of how to use Tailwind CSS in your next Spring Boot application. If you just want to get up and running with Tailwind CSS you can use a CDN but this should only be used for prototyping because you will end up shipping a very large...",{"minutes":711,"text":712},{"_id":1675,"path":1676,"title":1677,"description":1678,"meta":1679,"readingTime":1686},"blog\u002Fblog\u002F2024\u002F07\u002F10\u002Fjava-gpt-4o.md","\u002Fblog\u002F2024\u002F07\u002F10\u002Fjava-gpt-4o","Getting Started with Open AI's GPT-4o in Java","In this tutorial you will learn how to access OpenAI's newest model, GPT-4o in Java without using any dependencies. As a Java developer, there are several highlights you would be excited about – 50% lower pricing, two times faster latency, and five times the rate limits.",{"slug":1680,"date":1681,"published":12,"tags":1682,"author":16,"cover":1684,"video":1685,"excerpt":11,"shortDesc":1678},"java-gpt-4o","2024-07-10T17:00:00.000Z",[632,1683,1620],"OpenAI",".\u002Fjava-gpt-4o-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FEDJLHWcFvpQ",{"minutes":620,"text":621},{"_id":1688,"path":1689,"title":1690,"description":1691,"meta":1692,"readingTime":1698},"blog\u002Fblog\u002F2024\u002F06\u002F20\u002Fspring-ai-m1.md","\u002Fblog\u002F2024\u002F06\u002F20\u002Fspring-ai-m1","What's New in Spring AI 1.0.0 M1","In this article you learn about what is new in the latest release of Spring AI, 1.0.0 M1. The milestone comes packed full of features headlined by the new Chat Client that has a fluent API.",{"slug":1693,"date":1694,"published":12,"tags":1695,"author":16,"cover":1696,"video":1697,"excerpt":11,"shortDesc":1691},"spring-ai-m1","2024-06-20T17:00:00.000Z",[14,631],".\u002Fspring_ai_m1_03.png","https:\u002F\u002Fyoutube.com\u002Fembed\u002FDe9a-TaJImI",{"minutes":873,"text":874},{"_id":1700,"path":1701,"title":1702,"description":1703,"meta":1704,"readingTime":1710},"blog\u002Fblog\u002F2024\u002F06\u002F03\u002Fspring-io-2024.md","\u002Fblog\u002F2024\u002F06\u002F03\u002Fspring-io-2024","Spring I\u002FO 2024","I just returned from my very first Spring I\u002FO and I thought this would be a great opportunity to tell you about one of the best conferences I have eve been to. I am very fortunate to be able to travel the world visiting customers and conferences but this was by far one of my favorite trips ever.",{"slug":1705,"date":1706,"published":12,"tags":1707,"author":16,"cover":1708,"video":11,"excerpt":11,"shortDesc":1709},"spring-io-2024","2024-06-03T17:00:00.000Z",[14],".\u002Fspring_io_cover.jpeg","I just returned from my very first Spring I\u002FO and I thought this would be a great opportunity to tell you about one of the best conferences I have eve been to. I am very fortunate to be able to travel the world visiting customers and conferences but this was...",{"minutes":636,"text":637},{"_id":1712,"path":1713,"title":1714,"description":1715,"meta":1716,"readingTime":1722},"blog\u002Fblog\u002F2024\u002F01\u002F21\u002Fjava-champion.md","\u002Fblog\u002F2024\u002F01\u002F21\u002Fjava-champion","I'm a Java Champion","On Monday, January 8th, I woke up expecting just another day. Little did I know that this would become a day etched in my memory forever. In this post I would like to tell you about my career and how I became I Java Champion.",{"slug":1717,"date":1718,"published":12,"tags":1719,"author":16,"cover":1721,"video":11,"excerpt":11,"shortDesc":1715},"java-champion","2024-01-21T17:00:00.000Z",[632,1720],"Meta",".\u002Fjava-champion-cover.png",{"minutes":620,"text":621},{"_id":1724,"path":1725,"title":1726,"description":1727,"meta":1728,"readingTime":1734},"blog\u002Fblog\u002F2024\u002F01\u002F15\u002Fdeveloper-advocate.md","\u002Fblog\u002F2024\u002F01\u002F15\u002Fdeveloper-advocate","What is Developer Relations and How do you define Developer Advocacy?","In this article, I'll provide an overview of Developer Relations (DevRel) and guide you on how to get started. If you're considering this as a potential career, I hope to inform and inspire you.",{"slug":1729,"date":1730,"published":12,"tags":1731,"author":16,"cover":1733,"video":11,"excerpt":11,"shortDesc":1727},"developer-advocate","2024-01-15T17:00:00.000Z",[1732],"DevRel",".\u002Fdeveloper-advocate.png",{"minutes":939,"text":940},{"_id":1736,"path":1737,"title":1738,"description":1739,"meta":1740,"readingTime":1745},"blog\u002Fblog\u002F2024\u002F01\u002F01\u002Fhappy-new-year-2024.md","\u002Fblog\u002F2024\u002F01\u002F01\u002Fhappy-new-year-2024","Happy New Year 2024","In this article I will take a look at some goals and things I want to focus on in the new year.",{"slug":1741,"date":1742,"published":12,"tags":1743,"author":16,"cover":1744,"video":11,"excerpt":11,"shortDesc":1739},"happy-new-year-2024","2024-01-01T17:00:00.000Z",[1720],"photo-1701170633885-7209b1bf10ee.jpeg",{"minutes":1406,"text":1407},{"_id":1747,"path":1748,"title":1749,"description":1750,"meta":1751,"readingTime":1756},"blog\u002Fblog\u002F2023\u002F12\u002F30\u002F2023-year-in-review.md","\u002Fblog\u002F2023\u002F12\u002F30\u002F2023-year-in-review","2023 Year in Review","In this article I take a look back at 2023 and share some of the highlights from the year.",{"slug":1752,"date":1753,"published":12,"tags":1754,"author":16,"cover":1755,"video":11,"excerpt":11,"shortDesc":1750},"2023-year-in-review","2023-12-30T17:00:00.000Z",[1720],"behnam-norouzi-f_Bo19fq4Oc-unsplash.jpg",{"minutes":790,"text":791},{"_id":1758,"path":1759,"title":1760,"description":1761,"meta":1762,"readingTime":1767},"blog\u002Fblog\u002F2023\u002F12\u002F20\u002Fspring-boot-3-2.md","\u002Fblog\u002F2023\u002F12\u002F20\u002Fspring-boot-3-2","What's New in Spring Boot 3.2","This article highlights some of the new features in the latest releases of Spring Framework 6.1 and Spring Boot 3.2.",{"slug":1763,"date":1764,"published":12,"tags":1765,"author":16,"cover":1766,"video":11,"excerpt":11,"shortDesc":1761},"spring-boot-3-2","2023-12-20T17:00:00.000Z",[14],"whats-new.jpeg",{"minutes":1141,"text":1142},{"_id":1769,"path":1770,"title":1771,"description":1772,"meta":1773,"readingTime":1779},"blog\u002Fblog\u002F2023\u002F12\u002F14\u002Fvirtual-threads-spring-boot.md","\u002Fblog\u002F2023\u002F12\u002F14\u002Fvirtual-threads-spring-boot","Virtual Threads in Spring Boot","In this article, we will discuss Virtual Threads in Java, their significance for Spring Boot developers, and how they can enhance the performance of certain types of Spring Boot applications.",{"slug":1774,"date":1775,"published":12,"tags":1776,"author":16,"cover":1777,"video":1778,"excerpt":11,"shortDesc":1772},"virtual-threads-spring-boot","2023-12-14T17:00:00.000Z",[632,14],"spring-boot-virtual-threads.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTHavIYnlwck",{"minutes":859,"text":860},{"_id":1781,"path":1782,"title":1783,"description":1784,"meta":1785,"readingTime":1791},"blog\u002Fblog\u002F2023\u002F09\u002F17\u002Fspring-boot-actuator.md","\u002Fblog\u002F2023\u002F09\u002F17\u002Fspring-boot-actuator","The Spring Boot Actuator is the one dependency you should include in every project","In this article, we will focus on the most important Spring Boot starter that you should include in all of your projects. The Spring Boot Actuator.",{"slug":1786,"date":1787,"published":12,"tags":1788,"author":16,"cover":1789,"video":1790,"excerpt":11,"shortDesc":1784},"spring-boot-actuator","2023-09-17T17:00:00.000Z",[14],"spring-boot-actuator.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4OVe0MWgZ4k",{"minutes":790,"text":791},{"_id":1793,"path":1794,"title":1795,"description":1796,"meta":1797,"readingTime":1803},"blog\u002Fblog\u002F2023\u002F09\u002F11\u002Fspring-jdbc-client.md","\u002Fblog\u002F2023\u002F09\u002F11\u002Fspring-jdbc-client","A First Look at the new JDBC Client in Spring Boot 3.2","In this tutorial you will learn about the new JDBC Client in Spring Framework 6.1 and Spring Boot 3.2.",{"slug":1798,"date":1799,"published":12,"tags":1800,"author":16,"cover":1801,"video":1802,"excerpt":11,"shortDesc":1796},"spring-jdbc-client","2023-09-11T17:00:00.000Z",[14],".\u002Fspring-jdbc-client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJBu5GibEJ4k",{"minutes":993,"text":994},{"_id":1805,"path":1806,"title":1807,"description":1808,"meta":1809,"readingTime":1815},"blog\u002Fblog\u002F2023\u002F09\u002F08\u002Frest-client-first-look.md","\u002Fblog\u002F2023\u002F09\u002F08\u002Frest-client-first-look","A First Look at the new Rest Client in Spring Boot 3.2","This is my first look at the new Rest Client in Spring Boot 3.2. In this tutorial we will discuss what a client is, what are the different implementations of clients available and how to get started with the new Rest Client in Spring Framework 6.1 and Spring Boot 3.2",{"slug":1810,"date":1811,"published":12,"tags":1812,"author":16,"cover":1813,"video":1814,"excerpt":11,"shortDesc":1808},"rest-client-first-look","2023-09-08T17:00:00.000Z",[14],".\u002Fspring-boot-rest-client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FUDNrJAvKc0k",{"minutes":666,"text":667},{"_id":1817,"path":1818,"title":1819,"description":1820,"meta":1821,"readingTime":1827},"blog\u002Fblog\u002F2023\u002F07\u002F17\u002Fpgadmin-docker-compose.md","\u002Fblog\u002F2023\u002F07\u002F17\u002Fpgadmin-docker-compose","Streamline Your Development: Spring Boot with PostgreSQL & pgAdmin in Docker","In this article you will learn about the new Docker Compose module in Spring Boot 3.1 and how to connect to a Postgres database from your application. You will also learn how to use psql in the shell and pgAdmin to manage your database.",{"slug":1822,"date":1823,"published":12,"tags":1824,"author":16,"cover":1825,"video":1826,"excerpt":11,"shortDesc":1820},"pgadmin-docker-compose","2023-07-17T17:00:00.000Z",[14],".\u002FpgAdminDockerCompose.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FXDlgWyVfSMA",{"minutes":683,"text":684},{"_id":1829,"path":1830,"title":1831,"description":1832,"meta":1833,"readingTime":1839},"blog\u002Fblog\u002F2023\u002F07\u002F13\u002Fgraphql-schema-mapping-inspection.md","\u002Fblog\u002F2023\u002F07\u002F13\u002Fgraphql-schema-mapping-inspection","Spring for GraphQL Schema Mapping Inspection Report","Join VMware's Spring Developer Advocate, Dan Vega, as he explores the exciting new releases in Spring for GraphQL. Dive into the enhanced features of the inspection report, walk through how to create a project, and more!",{"slug":1834,"date":1835,"published":12,"tags":1836,"author":16,"cover":1837,"video":1838,"excerpt":11,"shortDesc":1832},"graphql-schema-mapping-inspection","2023-07-13T15:00:00.000Z",[14,975],".\u002Fgraphql-schema-inspection.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FYBPG0JbHvpY",{"minutes":859,"text":860},{"_id":1841,"path":1842,"title":1843,"description":1844,"meta":1845,"readingTime":1852},"blog\u002Fblog\u002F2023\u002F06\u002F30\u002Faws-lambda-spring-boot-3.md","\u002Fblog\u002F2023\u002F06\u002F30\u002Faws-lambda-spring-boot-3","Deploying Spring Boot 3 Applications to AWS Lambda","Discover effective solutions for hosting your personal spring boot projects without hefty costs. Boost your skills with Dan Vega, your spring developer advocate, while exploring the capabilities of AWS Lambda.",{"slug":1846,"date":1847,"published":12,"tags":1848,"author":16,"cover":1850,"video":1851,"excerpt":11,"shortDesc":1844},"aws-lambda-spring-boot-3","2023-06-30T15:00:00.000Z",[14,1849],"AWS",".\u002Faws-lambda-spring-boot-3-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FGGPPkUcHleQ",{"minutes":652,"text":653},{"_id":1854,"path":1855,"title":1856,"description":1857,"meta":1858,"readingTime":1865},"blog\u002Fblog\u002F2023\u002F06\u002F12\u002Fspring-http-interfaces-headers.md","\u002Fblog\u002F2023\u002F06\u002F12\u002Fspring-http-interfaces-headers","How to add Request Headers using HTTP Interfaces in Spring Boot 3","In this tutorial you will learn how to add a request header when using HTTP Interfaces in Spring Boot 3. This can be useful when you need to add a header to a single request or every single request. You will also learn how to view the headers that are sent to make sure everything is working properly.",{"slug":1859,"date":1860,"published":12,"tags":1861,"author":16,"cover":1862,"video":1863,"excerpt":11,"shortDesc":1864},"spring-http-interfaces-headers","2023-06-14T08:00:00.000Z",[15,14],".\u002Fhttp-interface-request-headers.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FAOJzm7yFOl0","In this tutorial you will learn how to add a request header when using HTTP Interfaces in Spring Boot 3. This can be useful when you need to add a header to a single request or every single request. You will also learn how to view the headers that are...",{"minutes":1866,"text":1867},5,"5 min read",{"_id":1869,"path":1870,"title":1871,"description":1872,"meta":1873,"readingTime":1878},"blog\u002Fblog\u002F2023\u002F06\u002F14\u002Fspring-http-interfaces.md","\u002Fblog\u002F2023\u002F06\u002F14\u002Fspring-http-interfaces","Spring HTTP Interface Clients: Consuming HTTP services in Spring Boot","Learn all about the new HTTP Interfaces in Spring Framework 6 and Spring Boot 3 by building out a real world example.",{"slug":1874,"date":1860,"published":12,"tags":1875,"author":16,"cover":1876,"video":1877,"excerpt":11,"shortDesc":1872},"spring-http-interfaces",[15,14],".\u002Fhttp-interfaces-crud.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4U0hUyktpvg",{"minutes":724,"text":725},{"_id":1880,"path":1881,"title":1882,"description":1883,"meta":1884,"readingTime":1889},"blog\u002Fblog\u002F2023\u002F05\u002F19\u002Faws-lambda-java-17.md","\u002Fblog\u002F2023\u002F05\u002F19\u002Faws-lambda-java-17","Java 17 🤝 AWS Lambda: Creating Serverless Functions in Java & Spring with Java 17","AWS has made a big announcement recently - Java 17 runtime is now supported on AWS Lambda. What this means is, you now have the freedom to write your lambda functions using Java in Spring and specifically target JDK 17.",{"slug":1885,"date":1886,"published":12,"tags":1887,"author":16,"cover":1850,"video":1888,"excerpt":11,"shortDesc":1883},"aws-lambda-java-17","2023-05-19T08:00:00.000Z",[14,1849,632],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FbxK4GscuVgs",{"minutes":620,"text":621},{"_id":1891,"path":1892,"title":1893,"description":1894,"meta":1895,"readingTime":1901},"blog\u002Fblog\u002F2023\u002F05\u002F03\u002Fspring-session-introduction.md","\u002Fblog\u002F2023\u002F05\u002F03\u002Fspring-session-introduction","Demystifying Spring Session: A Comprehensive Introduction for Java Developers!","In this tutorial, we'll explore the powerful features of Spring Session and learn how to effectively manage user sessions in your Java web applications.",{"slug":1896,"date":1897,"published":12,"tags":1898,"author":16,"cover":1899,"video":1900,"excerpt":11,"shortDesc":1894},"spring-session-introduction","2023-05-03T08:00:00.000Z",[1137],".\u002Fspring-session-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fk62bO-W6Sb0",{"minutes":790,"text":791},{"_id":1903,"path":1904,"title":1905,"description":1906,"meta":1907,"readingTime":1913},"blog\u002Fblog\u002F2023\u002F04\u002F28\u002Fspring-security-oauth2-login.md","\u002Fblog\u002F2023\u002F04\u002F28\u002Fspring-security-oauth2-login","OAuth2 Login Made Easy in Java: A Spring Boot & Spring Security Walkthrough","In this tutorial, we will discuss how to set up OAuth 2 logins in Spring Security with Spring Boot.",{"slug":1908,"date":1909,"published":12,"tags":1910,"author":16,"cover":1911,"video":1912,"excerpt":11,"shortDesc":1906},"spring-security-oauth2-login","2023-04-28T08:00:00.000Z",[1137],".\u002Fspring-security-oauth2-login.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fus0VjFiHogo",{"minutes":749,"text":750},{"_id":1915,"path":1916,"title":1917,"description":1918,"meta":1919,"readingTime":1925},"blog\u002Fblog\u002F2023\u002F04\u002F26\u002Fspring-boot-docker-compose.md","\u002Fblog\u002F2023\u002F04\u002F26\u002Fspring-boot-docker-compose","🔥 New in Spring Boot 3.1 - Spring Boot Docker Compose Module","In this tutorial you will learn about the new Spring Boot Docker Compose Module. This module allows you to use Docker Compose files directly with Spring Boot applications.",{"slug":1920,"date":1921,"published":12,"tags":1922,"author":16,"cover":1923,"video":1924,"excerpt":11,"shortDesc":1918},"spring-boot-docker-compose","2023-04-26T08:00:00.000Z",[14],".\u002Fspring-boot-docker-compose.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlS1GwdIfk0c",{"minutes":749,"text":750},{"_id":1927,"path":1928,"title":1929,"description":1930,"meta":1931,"readingTime":1937},"blog\u002Fblog\u002F2023\u002F04\u002F20\u002Fmultiple-spring-security-configs.md","\u002Fblog\u002F2023\u002F04\u002F20\u002Fmultiple-spring-security-configs","Advanced Spring Security - How to create multiple Spring Security Configurations","In this tutorial, we will discuss how to create multiple Spring Security configurations and why you might want to do so.",{"slug":1932,"date":1933,"published":12,"tags":1934,"author":16,"cover":1935,"video":1936,"excerpt":11,"shortDesc":1930},"multiple-spring-security-configs","2023-04-20T08:00:00.000Z",[1137],".\u002Fspring-security-multiple-configurations.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPczgM2L3w60",{"minutes":859,"text":860},{"_id":1939,"path":1940,"title":1941,"description":1942,"meta":1943,"readingTime":1950},"blog\u002Fblog\u002F2023\u002F04\u002F17\u002Fgraphql-client.md","\u002Fblog\u002F2023\u002F04\u002F17\u002Fgraphql-client","Create a GraphQL Client in Java with Spring Boot","If you're working on a Spring application and you need to call another REST API, you have tools such as RestTemplate or WebClient. But what if you need to call a GraphQL API? With Spring, a GraphQL Client is available. In this tutorial, you will learn how to include it in your project and use it by building a practical example.",{"slug":1944,"date":1945,"published":12,"tags":1946,"author":16,"cover":1947,"video":1948,"excerpt":11,"shortDesc":1949},"graphql-client","2023-04-17T08:00:00.000Z",[14,975],".\u002Fgraphql-client-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FBuPItqaVeGo","If you're working on a Spring application and you need to call another REST API, you have tools such as RestTemplate or WebClient. But what if you need to call a GraphQL API? With Spring, a GraphQL Client is available. In this tutorial, you will learn how to include it...",{"minutes":697,"text":698},{"_id":1952,"path":1953,"title":1954,"description":1955,"meta":1956,"readingTime":1962},"blog\u002Fblog\u002F2023\u002F04\u002F12\u002Fvirtual-threads-spring.md","\u002Fblog\u002F2023\u002F04\u002F12\u002Fvirtual-threads-spring","Project Loom Virtual Threads in Spring (JDK 19\u002F20 Preview)","Project Loom virtual threads explained for Spring developers: why thread-per-request breaks under load, and how to enable them in Spring on JDK 19\u002F20 preview.",{"slug":1957,"date":1958,"published":12,"tags":1959,"author":16,"cover":1960,"video":1961,"excerpt":11,"shortDesc":1955},"virtual-threads-spring","2023-04-12T16:00:00.000Z",[14,975],".\u002Fvirtual-threads-spring-boot.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FIs5HXJhC3jE",{"minutes":749,"text":750},{"_id":1964,"path":1965,"title":1966,"description":1967,"meta":1968,"readingTime":1974},"blog\u002Fblog\u002F2023\u002F03\u002F31\u002Fvideotap.md","\u002Fblog\u002F2023\u002F03\u002F31\u002Fvideotap","Why VideoTap is a Game-Changer for Content Creators: Convert Videos to Blog Posts in Minutes!","Are you a content creator who struggles to find enough time to produce written content alongside videos? Do you wish there was an easy way to transform your videos into compelling blog posts? Look no further than VideoTap!",{"slug":1969,"date":1970,"published":12,"tags":1971,"author":16,"cover":1973,"video":11,"excerpt":11,"shortDesc":1967},"videotap","2023-03-31T16:00:00.000Z",[1972],"content",".\u002Fvideo-to-blogpost.png",{"minutes":1406,"text":1407},{"_id":1976,"path":1977,"title":1978,"description":1979,"meta":1980,"readingTime":1986},"blog\u002Fblog\u002F2023\u002F03\u002F20\u002Fgraphql-mutations.md","\u002Fblog\u002F2023\u002F03\u002F20\u002Fgraphql-mutations","Working with GraphQL Mutations in Spring Boot","In this blog post, we'll be taking a look at mutations in GraphQL, specifically using Spring Boot, GraphQL Java, and Spring Data JPA.",{"slug":1981,"date":1982,"published":12,"tags":1983,"author":16,"cover":1984,"video":1985,"excerpt":11,"shortDesc":1979},"graphql-mutations","2023-03-20T11:00:00.000Z",[975,14],".\u002Fgraphql-mutations.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fu3FFRq3-0CM",{"minutes":636,"text":637},{"_id":1988,"path":1989,"title":1990,"description":1991,"meta":1992,"readingTime":1998},"blog\u002Fblog\u002F2023\u002F03\u002F15\u002Fspring-security-lambda-dsl.md","\u002Fblog\u002F2023\u002F03\u002F15\u002Fspring-security-lambda-dsl","Spring Security Lambda DSL vs Chaining Configuration","Spring Security's Lambda DSL vs the older chaining style with and(). Configure a SecurityFilterChain both ways in Spring Boot and see which reads cleaner.",{"slug":1993,"date":1994,"published":12,"tags":1995,"author":16,"cover":1996,"video":1997,"excerpt":11,"shortDesc":1991},"spring-security-lambda-dsl","2023-03-15T09:30:00.000Z",[1137],".\u002Fspring-security-lambda-dsl.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPWnEZh_t0WI",{"minutes":845,"text":846},{"_id":2000,"path":2001,"title":2002,"description":2003,"meta":2004,"readingTime":2011},"blog\u002Fblog\u002F2023\u002F03\u002F12\u002Fnotion-api-file-expired.md","\u002Fblog\u002F2023\u002F03\u002F12\u002Fnotion-api-file-expired","Notion API File URLs Expire: Fixing 403 Errors on Images","Notion API file URLs carry an expiry_time and expire after 1 hour, so your images start returning 403 Forbidden. Here's how I fixed it in a Nuxt 3 static site.",{"slug":2005,"date":2006,"published":12,"tags":2007,"author":16,"cover":2010,"video":11,"excerpt":11,"shortDesc":2003},"notion-api-file-expired","2023-03-12T14:30:00.000Z",[2008,2009],"javascript","notion",".\u002Fnotion-cover-image.png",{"minutes":620,"text":621},{"_id":4,"path":5,"title":6,"description":7,"meta":2013,"readingTime":2015},{"slug":9,"date":10,"published":12,"tags":2014,"author":16,"cover":17,"video":18,"excerpt":11,"shortDesc":7},[14,15],{"minutes":859,"text":860},{"_id":2017,"path":2018,"title":2019,"description":2020,"meta":2021,"readingTime":2029},"blog\u002Fblog\u002F2023\u002F03\u002F02\u002Fspring-shell-intro.md","\u002Fblog\u002F2023\u002F03\u002F02\u002Fspring-shell-intro","Building Command Line Applications in Spring with Spring Shell","In this introduction to Spring Shell, you will learn you how to build CLI applications in a familiar programming environment using Java + Spring.",{"slug":2022,"date":2023,"published":12,"tags":2024,"author":16,"cover":2027,"video":2028,"excerpt":11,"shortDesc":2020},"spring-shell-intro","2023-03-02T11:00:00.000Z",[2025,2026],"spring shell","Spring boot",".\u002Fspring-shell-introduction.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F8B0IjOIzicU",{"minutes":683,"text":684},{"_id":2031,"path":2032,"title":2033,"description":2034,"meta":2035,"readingTime":2042},"blog\u002Fblog\u002F2023\u002F02\u002F03\u002Fnative-images-graalvm.md","\u002Fblog\u002F2023\u002F02\u002F03\u002Fnative-images-graalvm","Building Native Images in Java with GraalVM","Learn how to handle GraalVM Native Image reflection errors in Java by using the tracing agent to generate reachability metadata and fix ClassNotFoundException.",{"slug":2036,"date":2037,"published":12,"tags":2038,"author":16,"cover":2040,"video":2041,"excerpt":11,"shortDesc":2034},"native-images-graalvm","2023-02-03T10:00:00.000Z",[677,2039],"graalvm",".\u002Fgraalvm-dynamic-new.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FRk4zfvVvRks",{"minutes":697,"text":698},{"_id":2044,"path":2045,"title":2046,"description":2047,"meta":2048,"readingTime":2054},"blog\u002Fblog\u002F2023\u002F01\u002F31\u002Fgraphql-custom-scalars.md","\u002Fblog\u002F2023\u002F01\u002F31\u002Fgraphql-custom-scalars","GraphQL Scalars - How to use Custom Scalars in Java","Learn how to use GraphQL custom scalars in Java. We build a Spring Boot 3 app with Spring for GraphQL and register the BigDecimal and LocalDateTime scalars.",{"slug":2049,"date":2050,"published":12,"tags":2051,"author":16,"cover":2052,"video":2053,"excerpt":11,"shortDesc":2047},"graphql-custom-scalars","2023-01-31T08:00:00.000Z",[14,975],".\u002Fgraphql-scalars-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fooknmgr4WiA",{"minutes":724,"text":725},{"_id":2056,"path":2057,"title":2058,"description":2059,"meta":2060,"readingTime":2066},"blog\u002Fblog\u002F2023\u002F01\u002F27\u002Fjakarta-ee-10-uuid.md","\u002Fblog\u002F2023\u002F01\u002F27\u002Fjakarta-ee-10-uuid","Easily Implement UUIDs as Primary Keys in Spring Boot 3","In this tutorial you will learn how to use one of the new features in Jakarta EE 10 in a Spring Boot 3 application.",{"slug":2061,"date":2062,"published":12,"tags":2063,"author":16,"cover":2064,"video":2065,"excerpt":11,"shortDesc":2059},"jakarta-ee-10-uuid","2023-01-27T10:00:00.000Z",[14],".\u002Fjakarta_ee_10_uuid.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FZWwqcH__kr4",{"minutes":790,"text":791},{"_id":2068,"path":2069,"title":2070,"description":2071,"meta":2072,"readingTime":2079},"blog\u002Fblog\u002F2023\u002F01\u002F01\u002Fhappy-new-year-2023.md","\u002Fblog\u002F2023\u002F01\u002F01\u002Fhappy-new-year-2023","Happy New Year 2023","Happy New Year! I want to take a few minutes and talk about a few of my priorities as we head into the new year.",{"slug":2073,"date":2074,"published":12,"tags":2075,"author":16,"cover":2078,"video":11,"excerpt":11,"shortDesc":2071},"happy-new-year-2023","2023-01-01T10:00:00.000Z",[2076,2077],"meta","goals","kostiantyn-li-pTfOKdj8whk-unsplash.jpg",{"minutes":683,"text":684},{"_id":2081,"path":2082,"title":2083,"description":2084,"meta":2085,"readingTime":2090},"blog\u002Fblog\u002F2022\u002F12\u002F29\u002F2022-reflections.md","\u002Fblog\u002F2022\u002F12\u002F29\u002F2022-reflections","2022 Reflections","In this article I am going to spend some time reflecting because I believe it's a good reminder of the good and the bad as I began to set some goals for next year.",{"slug":2086,"date":2087,"published":12,"tags":2088,"author":16,"cover":2089,"video":11,"excerpt":11,"shortDesc":2084},"2022-reflections","2022-12-29T16:00:00.000Z",[2076],".\u002Fjose-m-reyes-0GBxtiFvzXE-unsplash.jpg",{"minutes":790,"text":791},{"_id":2092,"path":2093,"title":2094,"description":2095,"meta":2096,"readingTime":2102},"blog\u002Fblog\u002F2022\u002F12\u002F19\u002Fspring-proxy-bean-methods.md","\u002Fblog\u002F2022\u002F12\u002F19\u002Fspring-proxy-bean-methods","Spring @Configuration proxyBeanMethods: Why Set It to False","Setting proxyBeanMethods = false on @Configuration drops the CGLIB proxy Spring adds. Learn why it matters for native images and how to refactor your beans.",{"slug":2097,"date":2098,"published":12,"tags":2099,"author":16,"cover":2100,"video":2101,"excerpt":11,"shortDesc":2095},"spring-proxy-bean-methods","2022-12-19T10:00:00.000Z",[14],".\u002Fproxy-bean-methods.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FVoK6-OiSPu4",{"minutes":790,"text":791},{"_id":2104,"path":2105,"title":2106,"description":2107,"meta":2108,"readingTime":2114},"blog\u002Fblog\u002F2022\u002F12\u002F16\u002Fspring-response-entity.md","\u002Fblog\u002F2022\u002F12\u002F16\u002Fspring-response-entity","Spring Response Entity -  How to customize the response in Spring Boot","In this tutorial, you will learn what the ResponseEntity class is and how it can be used to customize the response in your Spring Boot application.",{"slug":2109,"date":2110,"published":12,"tags":2111,"author":16,"cover":2112,"video":2113,"excerpt":11,"shortDesc":2107},"spring-response-entity","2022-12-16T12:00:00.000Z",[14],".\u002Fspring-response-entity.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FB5Zrn1Tzyqw",{"minutes":1406,"text":1407},{"_id":2116,"path":2117,"title":2118,"description":2119,"meta":2120,"readingTime":2126},"blog\u002Fblog\u002F2022\u002F12\u002F02\u002Faws-lambda-snapstart-spring.md","\u002Fblog\u002F2022\u002F12\u002F02\u002Faws-lambda-snapstart-spring","AWS Lambda SnapStart for Spring Developers","AWS Lambda SnapStart is a new performance optimization developed by AWS that can significantly improve the startup time for your applications.",{"slug":2121,"date":2122,"published":12,"tags":2123,"author":16,"cover":2124,"video":2125,"excerpt":11,"shortDesc":2119},"aws-lambda-snapstart-spring","2022-12-02T08:00:00.000Z",[1849,14],".\u002Faws_lambda_snapstart.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FisS6m6aj_Ak",{"minutes":254,"text":2127},"4 min read",{"_id":2129,"path":2130,"title":2131,"description":2132,"meta":2133,"readingTime":2139},"blog\u002Fblog\u002F2022\u002F12\u002F01\u002Fspring-security-6.md","\u002Fblog\u002F2022\u002F12\u002F01\u002Fspring-security-6","What's new in Spring Security 6","In this article we will discuss the new features of Spring Security 6 and create a new Spring Boot 3 project together.",{"slug":2134,"date":2135,"published":12,"tags":2136,"author":16,"cover":2137,"video":2138,"excerpt":11,"shortDesc":2132},"spring-security-6","2022-12-01T16:00:00.000Z",[14,1137],".\u002Fspring_security_6.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTDOHbK39Oxg",{"minutes":1406,"text":1407},{"_id":2141,"path":2142,"title":2143,"description":2144,"meta":2145,"readingTime":2151},"blog\u002Fblog\u002F2022\u002F11\u002F10\u002Faws-lambda-java-core.md","\u002Fblog\u002F2022\u002F11\u002F10\u002Faws-lambda-java-core","Building AWS Lambda Functions with Java: An Introduction to the AWS Lambda Core Java Library","In this tutorial you will learn how to build AWS Lambda functions with Java using the AWS Lambda Core Java Library.",{"slug":2146,"date":2147,"published":12,"tags":2148,"author":16,"cover":2149,"video":2150,"excerpt":11,"shortDesc":2144},"aws-lambda-java-core","2022-11-10T08:00:00.000Z",[1849,677],".\u002Faws-lambda-java-core.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkyWllXOGMWQ",{"minutes":859,"text":860},{"_id":2153,"path":2154,"title":2155,"description":2156,"meta":2157,"readingTime":2163},"blog\u002Fblog\u002F2022\u002F11\u002F09\u002Fhello-aws-lambda-java.md","\u002Fblog\u002F2022\u002F11\u002F09\u002Fhello-aws-lambda-java","AWS Lambda Java: How to create your first AWS Lambda Function in Java","In this tutorial, I'll show you how to create a simple AWS Lambda function using Java.",{"slug":2158,"date":2159,"published":12,"tags":2160,"author":16,"cover":2161,"video":2162,"excerpt":11,"shortDesc":2156},"hello-aws-lambda-java","2022-11-09T08:00:00.000Z",[1849,677],".\u002Fhello-aws-lambda.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMaHxZEBRcT4",{"minutes":749,"text":750},{"_id":2165,"path":2166,"title":2167,"description":2168,"meta":2169,"readingTime":2175},"blog\u002Fblog\u002F2022\u002F09\u002F29\u002Fdomain-class-converter.md","\u002Fblog\u002F2022\u002F09\u002F29\u002Fdomain-class-converter","Spring Boot REST API Domain Class Converter","In this tutorial, you will learn about a class called the Domain Class Converter in Spring Data. This class will allow you to take arbitrary input like an id from a path variable in a REST API and automatically create a domain object by using Spring Data's CrudRepository.",{"slug":2170,"date":2171,"published":12,"tags":2172,"author":16,"cover":2173,"video":2174,"excerpt":11,"shortDesc":2168},"domain-class-converter","2022-09-29T11:00:00.000Z",[14,826],".\u002Fdomain-class-converter-thumbnail-small.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F_QBe2ZiXV-0",{"minutes":620,"text":621},{"_id":2177,"path":2178,"title":2179,"description":2180,"meta":2181,"readingTime":2187},"blog\u002Fblog\u002F2022\u002F09\u002F22\u002Fspring-security-cors.md","\u002Fblog\u002F2022\u002F09\u002F22\u002Fspring-security-cors","Spring Security CORS: How to Configure CORS in Spring Boot","Configure CORS in Spring Boot with @CrossOrigin, a WebMvcConfigurer, and a CorsConfigurationSource bean so Spring Security stops blocking preflight requests.",{"slug":2182,"date":2183,"published":12,"tags":2184,"author":16,"cover":2185,"video":2186,"excerpt":11,"shortDesc":2180},"spring-security-cors","2022-09-22T08:00:00.000Z",[1137],".\u002Fss-cors-thumbnail.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FHRwlT_etr60",{"minutes":859,"text":860},{"_id":2189,"path":2190,"title":2191,"description":2192,"meta":2193,"readingTime":2199},"blog\u002Fblog\u002F2022\u002F09\u002F09\u002Fspring-security-jwt.md","\u002Fblog\u002F2022\u002F09\u002F09\u002Fspring-security-jwt","How to Secure your REST APIs with Spring Security & JSON Web Tokens (JWTs)","In this tutorial, you will learn how to secure REST APIs with Spring Security and JSON Web Tokens (JWTs).",{"slug":2194,"date":2195,"published":12,"tags":2196,"author":16,"cover":2197,"video":2198,"excerpt":11,"shortDesc":2192},"spring-security-jwt","2022-09-09T16:00:00.000Z",[14,1137],"spring-security-jwt-cover.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKYNR5js2cXE",{"minutes":2200,"text":2201},35,"35 min read",{"_id":2203,"path":2204,"title":2205,"description":2206,"meta":2207,"readingTime":2214},"blog\u002Fblog\u002F2022\u002F05\u002F17\u002Fspring-for-graphql.md","\u002Fblog\u002F2022\u002F05\u002F17\u002Fspring-for-graphql","GraphQL Spring Boot - Up and Running with Spring for GraphQL","In this tutorial you are going to learn how to get up and running with Spring for GraphQL.",{"slug":2208,"date":2209,"published":12,"tags":2210,"author":16,"cover":2212,"video":2213,"excerpt":11,"shortDesc":2206},"spring-for-graphql","2022-05-17T16:00:00.000Z",[1509,2211],"graphql",".\u002Fspring-for-graphql-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F3PCNqXrU-2g",{"minutes":2215,"text":2216},39,"39 min read",{"_id":2218,"path":2219,"title":2220,"description":2221,"meta":2222,"readingTime":2228},"blog\u002Fblog\u002F2022\u002F05\u002F12\u002Fspring-data-jpa-pagination.md","\u002Fblog\u002F2022\u002F05\u002F12\u002Fspring-data-jpa-pagination","Spring Data JPA Pagination: Pageable and PageRequest Tutorial","Learn how to add pagination to a Spring Boot REST API with Spring Data JPA using Pageable, PageRequest, and the PagingAndSortingRepository, with code examples.",{"slug":2223,"date":2224,"published":12,"tags":2225,"author":16,"cover":2226,"video":2227,"excerpt":11,"shortDesc":2221},"spring-data-jpa-pagination","2022-05-12T16:00:00.000Z",[1201,826],".\u002Fspring-data-jpa-pagination-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Foq-c3D67WqM",{"minutes":993,"text":994},{"_id":2230,"path":2231,"title":2232,"description":2233,"meta":2234,"readingTime":2240},"blog\u002Fblog\u002F2022\u002F05\u002F11\u002Fspring-boot-value-annotation.md","\u002Fblog\u002F2022\u002F05\u002F11\u002Fspring-boot-value-annotation","Spring Boot @Value Annotation","Learn how to use the Spring Boot @Value annotation to inject configuration properties, set default values, and understand property source order in Java.",{"slug":2235,"date":2236,"published":12,"tags":2237,"author":16,"cover":2238,"video":2239,"excerpt":11,"shortDesc":2233},"spring-boot-value-annotation","2022-05-11T09:30:00.000Z",[1509],".\u002Fspring-boot-value-annotation-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvLSyFktOm4g",{"minutes":790,"text":791},{"_id":2242,"path":2243,"title":2244,"description":2245,"meta":2246,"readingTime":2251},"blog\u002Fblog\u002F2022\u002F01\u002F24\u002Fim-joining-vmware.md","\u002Fblog\u002F2022\u002F01\u002F24\u002Fim-joining-vmware","Im Joining VMware","I'm so excited to announce that I am joining VMware as a Spring Developer Advocate!",{"slug":2247,"date":2248,"published":12,"tags":2249,"author":16,"cover":2250,"video":11,"excerpt":11,"shortDesc":2245},"im-joining-vmware","2022-01-24T08:00:00.000Z",[2076],".\u002Fim-joining-vmware-cover.png",{"minutes":724,"text":725},{"_id":2253,"path":2254,"title":2255,"description":2256,"meta":2257,"readingTime":2262},"blog\u002Fblog\u002F2022\u002F01\u002F01\u002Fhappy-new-year-2022.md","\u002Fblog\u002F2022\u002F01\u002F01\u002Fhappy-new-year-2022","Happy New Year 2022","Happy New Year! I want to take a few minutes and reflect on the year that was 2021 and look ahead to 2022.",{"slug":2258,"date":2259,"published":12,"tags":2260,"author":16,"cover":2261,"video":11,"excerpt":11,"shortDesc":2256},"happy-new-year-2022","2022-01-01T11:00:00.000Z",[2077],".\u002Fkelly-sikkema-PXl_S152jNM-unsplash.jpg",{"minutes":749,"text":750},{"_id":2264,"path":2265,"title":2266,"description":2267,"meta":2268,"readingTime":2275},"blog\u002Fblog\u002F2021\u002F11\u002F15\u002Fmacbook-pro-m1-max-review.md","\u002Fblog\u002F2021\u002F11\u002F15\u002Fmacbook-pro-m1-max-review","14\" MacBook Pro M1 Max Review for developers and content creators","I have been using the new MacBook Pro for about a week and wanted to give you my initial thoughts from a developer & content creator perspective.",{"slug":2269,"date":2270,"published":12,"tags":2271,"author":16,"cover":2273,"video":2274,"excerpt":11,"shortDesc":2267},"macbook-pro-m1-max-review","2021-11-15T21:00:00.000Z",[2272],"Apple",".\u002Fmacbook-pro-review-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Ft-hEOyUnaXQ",{"minutes":790,"text":791},{"_id":2277,"path":2278,"title":2279,"description":2280,"meta":2281,"readingTime":2287},"blog\u002Fblog\u002F2021\u002F11\u002F06\u002Fgithub-copilot-java-developers.md","\u002Fblog\u002F2021\u002F11\u002F06\u002Fgithub-copilot-java-developers","GitHub Copilot for Java Develpers","Earlier this year GitHub launched Copilot, an AI pair-programmer. With GitHub Copilot, get suggestions for whole lines or entire functions right inside your editor.",{"slug":2282,"date":2283,"published":12,"tags":2284,"author":16,"cover":2285,"video":2286,"excerpt":11,"shortDesc":2280},"github-copilot-java-developers","2021-11-08T10:00:00.000Z",[677,1509],".\u002Fgithub_copilot_thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F97C3fQqzj-I",{"minutes":223,"text":2288},"2 min read",{"_id":2290,"path":2291,"title":2292,"description":2293,"meta":2294,"readingTime":2301},"blog\u002Fblog\u002F2021\u002F08\u002F30\u002Fspring-one-2021.md","\u002Fblog\u002F2021\u002F08\u002F30\u002Fspring-one-2021","Spring One 2021 Presentation","I'm so honored to be speaking at this year's SpringOne Conference. This article will give you a look ahead to the presentation by explaining what you can expect and the resources from my talk.",{"slug":2295,"date":2296,"published":12,"tags":2297,"author":16,"cover":2300,"video":11,"excerpt":11,"shortDesc":2293},"spring-one-2021","2021-08-30T19:45:43.204Z",[2298,1509,2299],"conference","vue",".\u002Fspring-one-2021-cover.png",{"minutes":239,"text":2302},"3 min read",{"_id":2304,"path":2305,"title":2306,"description":2307,"meta":2308,"readingTime":2314},"blog\u002Fblog\u002F2021\u002F01\u002F22\u002Ffull-stack-java.md","\u002Fblog\u002F2021\u002F01\u002F22\u002Ffull-stack-java","Full Stack Java development with Spring Boot and VueJS","In this tutorial, you are going to learn how to build a full-stack application that uses Vue for the frontend and Spring Boot for the backend.",{"slug":2309,"date":2310,"published":12,"tags":2311,"author":16,"cover":2312,"video":2313,"excerpt":11,"shortDesc":2307},"full-stack-java","2021-01-22T08:00:00.000Z",[677,2299],".\u002Ffull-stack-java-spring-vue.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F2G6r2f40Lps",{"minutes":939,"text":940},{"_id":2316,"path":2317,"title":2318,"description":2319,"meta":2320,"readingTime":2325},"blog\u002Fblog\u002F2021\u002F01\u002F08\u002Fnetwork-throttling.md","\u002Fblog\u002F2021\u002F01\u002F08\u002Fnetwork-throttling","How to force a delay in a web app","In this tutorial, I will show you can force a delay in a web application for testing purposes.",{"slug":2321,"date":2322,"published":12,"tags":2323,"author":16,"cover":2324,"video":11,"excerpt":11,"shortDesc":2319},"network-throttling","2021-01-08T09:30:00.000Z",[2008,2299,677],".\u002Fnetwork-throttling-cover.png",{"minutes":683,"text":684},{"_id":2327,"path":2328,"title":2329,"description":2330,"meta":2331,"readingTime":2336},"blog\u002Fblog\u002F2021\u002F01\u002F07\u002Fhappy-new-year-2021.md","\u002Fblog\u002F2021\u002F01\u002F07\u002Fhappy-new-year-2021","New Year, New Opportunities and Goals","In this article, I have some exciting personal news to share and I want to take a look ahead at the new year.",{"slug":2332,"date":2333,"published":12,"tags":2334,"author":16,"cover":2335,"video":11,"excerpt":11,"shortDesc":2330},"happy-new-year-2021","2021-01-07T11:30:00.000Z",[2076],"isaac-smith-YwrdbQw0oco-unsplash.jpg",{"minutes":845,"text":846},{"_id":2338,"path":2339,"title":2340,"description":2341,"meta":2342,"readingTime":2347},"blog\u002Fblog\u002F2020\u002F12\u002F16\u002Freassign-standard-in-out.md","\u002Fblog\u002F2020\u002F12\u002F16\u002Freassign-standard-in-out","How to test standard in and out in Java","In this tutorial I will show you how you can test standard in and out in Java.",{"slug":2343,"date":2344,"published":12,"tags":2345,"author":16,"cover":2346,"video":11,"excerpt":11,"shortDesc":2341},"reassign-standard-in-out","2020-12-16T15:17:39.619Z",[677],".\u002Ftesting-standard-in-out-java-cover.png",{"minutes":859,"text":860},{"_id":2349,"path":2350,"title":2351,"description":2352,"meta":2353,"readingTime":2359},"blog\u002Fblog\u002F2020\u002F07\u002F30\u002Finteractive-learning-from-oreilly.md","\u002Fblog\u002F2020\u002F07\u002F30\u002Finteractive-learning-from-oreilly","Interactive Learning from Oreilly","O'Reilly has a new hands-on learning platform called Interactive Learning. In this tutorial I will tell you all about it and the tutorials I created for it.",{"slug":2354,"date":2355,"published":12,"tags":2356,"author":16,"cover":2358,"video":11,"excerpt":11,"shortDesc":2352},"interactive-learning-from-oreilly","2020-07-30T12:50:24.664Z",[677,1509,2357],"maven",".\u002Foreilly-interactive-learning-cover.png",{"minutes":254,"text":2127},{"_id":2361,"path":2362,"title":2363,"description":2364,"meta":2365,"readingTime":2371},"blog\u002Fblog\u002F2020\u002F06\u002F04\u002Fspring-boot-rest-service.md","\u002Fblog\u002F2020\u002F06\u002F04\u002Fspring-boot-rest-service","Spring Boot REST Service: How to build a REST API in Java","In this tutorial you will learn how to build a REST API in Java using Spring Boot.",{"slug":2366,"date":2367,"published":12,"tags":2368,"author":16,"cover":2369,"video":2370,"excerpt":11,"shortDesc":2364},"spring-boot-rest-service","2020-06-04T08:00:00.000Z",[14],".\u002Fspring-boot-rest-service.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMWLe1tqPmUo",{"minutes":697,"text":698},{"_id":2373,"path":2374,"title":2375,"description":2376,"meta":2377,"readingTime":2384},"blog\u002Fblog\u002F2020\u002F06\u002F03\u002Fdeno-standard-in-out.md","\u002Fblog\u002F2020\u002F06\u002F03\u002Fdeno-standard-in-out","Working with Standard Input and Output in Deno","In this tutorial I will show you how to work with standard input and output in Deno.",{"slug":2378,"date":2379,"published":12,"tags":2380,"author":16,"cover":2383,"video":11,"excerpt":11,"shortDesc":2376},"deno-standard-in-out","2020-06-03T20:00:00.500Z",[2381,2382],"Deno","JavaScript",".\u002Fdeno_stdin_stdout-cover.png",{"minutes":683,"text":684},{"_id":2386,"path":2387,"title":2388,"description":2389,"meta":2390,"readingTime":2396},"blog\u002Fblog\u002F2020\u002F05\u002F29\u002Fhello-deno.md","\u002Fblog\u002F2020\u002F05\u002F29\u002Fhello-deno","Hello, Deno","An introduction to Deno which is a secure runtime for JavaScript and TypeScript",{"slug":2391,"date":2392,"published":12,"tags":2393,"author":16,"cover":2395,"video":11,"excerpt":11,"shortDesc":2389},"hello-deno","2020-05-29T12:00:00.000Z",[2394,2008],"deno",".\u002Fhello-deno-cover.png",{"minutes":2397,"text":2398},29,"29 min read",{"_id":2400,"path":2401,"title":2402,"description":2403,"meta":2404,"readingTime":2411},"blog\u002Fblog\u002F2020\u002F05\u002F16\u002Fwebsite-redesign-lessons-learned.md","\u002Fblog\u002F2020\u002F05\u002F16\u002Fwebsite-redesign-lessons-learned","Lessons learned from redesigning my website","I spent the last couple of months redesigning my website and I would like to share with you some of the lessons I learned",{"slug":2405,"date":2406,"published":12,"tags":2407,"author":16,"cover":2410,"video":11,"excerpt":11,"shortDesc":2403},"website-redesign-lessons-learned","2020-05-16T17:24:14.760Z",[2408,2299,2409],"css","gridsome",".\u002Fwebsite-redesign-lessons-learned-cover.png",{"minutes":620,"text":621},{"_id":2413,"path":2414,"title":2415,"description":2416,"meta":2417,"readingTime":2423},"blog\u002Fblog\u002F2020\u002F03\u002F09\u002Fspring-unit-vs-integration-test.md","\u002Fblog\u002F2020\u002F03\u002F09\u002Fspring-unit-vs-integration-test","Spring Boot Testing Basics: How to Unit Test & Integration Test REST Controllers","In this article, we're going to dive into the world of testing in Spring Boot, specifically looking at unit tests and integration tests.",{"slug":2418,"date":2419,"published":12,"tags":2420,"author":16,"cover":2421,"video":2422,"excerpt":11,"shortDesc":2416},"spring-unit-vs-integration-test","2020-03-09T10:00:00.000Z",[14],".\u002Funit-vs-int.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FpNiRNRgi5Ws",{"minutes":790,"text":791},{"_id":2425,"path":2426,"title":2427,"description":2428,"meta":2429,"readingTime":2435},"blog\u002Fblog\u002F2020\u002F02\u002F12\u002Fvue3-ref-vs-reactive.md","\u002Fblog\u002F2020\u002F02\u002F12\u002Fvue3-ref-vs-reactive","Vue 3 Composition API: Ref vs Reactive","One question I keep hearing over and over is what method should I use to declare reactive data in the Vue 3 Composition API? In this article, I explain what ref() and reactive() are and try to answer that question.",{"slug":2430,"date":2431,"published":12,"tags":2432,"author":16,"cover":2433,"video":2434,"excerpt":11,"shortDesc":2428},"vue3-ref-vs-reactive","2020-02-12T16:27:46.472Z",[2299],".\u002Fvue3-ref-vs-reactive-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FcRwG96MOHp0",{"minutes":2397,"text":2398},{"_id":2437,"path":2438,"title":2439,"description":2440,"meta":2441,"readingTime":2449},"blog\u002Fblog\u002F2020\u002F01\u002F17\u002Fvue-3-alpha-cli-plugin.md","\u002Fblog\u002F2020\u002F01\u002F17\u002Fvue-3-alpha-cli-plugin","Start using Vue 3 in a new project right now","In this tutorial, I walk you through how to add Vue 3 to a new project.",{"slug":2442,"date":2443,"published":12,"tags":2444,"author":16,"cover":2447,"video":2448,"excerpt":11,"shortDesc":2440},"vue-3-alpha-cli-plugin","2020-01-17T13:58:29.936Z",[2445,2446],"vue3","screencast",".\u002Fstart-using-vue3-today-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fo-jiS563yI8",{"minutes":1866,"text":1867},{"_id":2451,"path":2452,"title":2453,"description":2454,"meta":2455,"readingTime":2460},"blog\u002Fblog\u002F2020\u002F01\u002F13\u002Fcodemash-2020-recap.md","\u002Fblog\u002F2020\u002F01\u002F13\u002Fcodemash-2020-recap","CodeMash 2020 Recap","A recap of the conference CodeMash 2020 as both an attendee and a speaker.",{"slug":2456,"date":2457,"published":12,"tags":2458,"author":16,"cover":2459,"video":11,"excerpt":11,"shortDesc":2454},"codemash-2020-recap","2020-01-13T14:30:00.000Z",[2298,2299],".\u002Fcodemash-recap-cover.png",{"minutes":1406,"text":1407},{"_id":2462,"path":2463,"title":2464,"description":2465,"meta":2466,"readingTime":2471},"blog\u002Fblog\u002F2020\u002F01\u002F09\u002Fcodemash-2020.md","\u002Fblog\u002F2020\u002F01\u002F09\u002Fcodemash-2020","Vue3: Smaller, Faster & Stronger. CodeMash 2020","This post is a collection of resources for my presentation at CodeMash 2020.",{"slug":2467,"date":2468,"published":12,"tags":2469,"author":16,"cover":2470,"video":11,"excerpt":11,"shortDesc":2465},"codemash-2020","2020-01-09T09:00:00.000Z",[2299],".\u002Fcodemash-vue3.png",{"minutes":254,"text":2127},{"_id":2473,"path":2474,"title":2475,"description":2476,"meta":2477,"readingTime":2482},"blog\u002Fblog\u002F2019\u002F12\u002F19\u002Fup-and-running-with-vuejs.md","\u002Fblog\u002F2019\u002F12\u002F19\u002Fup-and-running-with-vuejs","New Course: Up & Running with Vue.js","I released a new course on how to get up and running with Vue.js for beginners",{"slug":2478,"date":2479,"published":12,"tags":2480,"author":16,"cover":2481,"video":11,"excerpt":11,"shortDesc":2476},"up-and-running-with-vuejs","2019-12-19T15:30:00.000Z",[2299],".\u002Fup-and-running-with-vuejs-cover.png",{"minutes":254,"text":2127},{"_id":2484,"path":2485,"title":2486,"description":2487,"meta":2488,"readingTime":2493},"blog\u002Fblog\u002F2019\u002F11\u002F21\u002Fspring-boot-visual-studio-code.md","\u002Fblog\u002F2019\u002F11\u002F21\u002Fspring-boot-visual-studio-code","Spring Boot in Visual Studio Code","Learn how to set up Spring Boot in Visual Studio Code using the Java and Spring Boot Extension Packs, then build a Spring Boot REST API in this tutorial.",{"slug":2489,"date":2490,"published":12,"tags":2491,"author":16,"cover":2492,"video":11,"excerpt":11,"shortDesc":2487},"spring-boot-visual-studio-code","2019-11-21T11:28:07.266Z",[14,677],".\u002Fspring-boot-in-vscode.png",{"minutes":223,"text":2288},{"_id":2495,"path":2496,"title":2497,"description":2498,"meta":2499,"readingTime":2504},"blog\u002Fblog\u002F2019\u002F10\u002F29\u002Funit-testing-vue-part-03.md","\u002Fblog\u002F2019\u002F10\u002F29\u002Funit-testing-vue-part-03","A Beginner's Guide to Unit Testing in Vue: Part 3","In Part 3 of this series we learn how to write unit tests in Vue by testing more complex components.",{"slug":2500,"date":2501,"published":12,"tags":2502,"author":16,"cover":2503,"video":11,"excerpt":11,"shortDesc":2498},"unit-testing-vue-part-03","2019-10-29T15:30:00.000Z",[2299],".\u002Funit-testing-vue-mastery-03-cover.jpg",{"minutes":209,"text":2505},"1 min read",{"_id":2507,"path":2508,"title":2509,"description":2510,"meta":2511,"readingTime":2516},"blog\u002Fblog\u002F2019\u002F10\u002F15\u002Funit-testing-vue-part-02.md","\u002Fblog\u002F2019\u002F10\u002F15\u002Funit-testing-vue-part-02","A Beginner's Guide to Unit Testing in Vue: Part 2","In the 2nd part of this 3 part series we will look at writing and running your first unit test in Vue",{"slug":2512,"date":2513,"published":12,"tags":2514,"author":16,"cover":2515,"video":11,"excerpt":11,"shortDesc":2510},"unit-testing-vue-part-02","2019-10-15T12:33:53.592Z",[2299],".\u002Funit-testing-part-02-cover.jpg",{"minutes":209,"text":2505},{"_id":2518,"path":2519,"title":2520,"description":2521,"meta":2522,"readingTime":2527},"blog\u002Fblog\u002F2019\u002F10\u002F01\u002Funit-testing-vue-part-01.md","\u002Fblog\u002F2019\u002F10\u002F01\u002Funit-testing-vue-part-01","A beginner's guide to Unit Testing in Vue: Part 1","Unit Testing in Vue: What to test?",{"slug":2523,"date":2524,"published":12,"tags":2525,"author":16,"cover":2526,"video":11,"excerpt":11,"shortDesc":2521},"unit-testing-vue-part-01","2019-10-01T17:00:00.000Z",[2299],"unit-testing-vue-mastery-01.png",{"minutes":209,"text":2505},{"_id":2529,"path":2530,"title":2531,"description":2532,"meta":2533,"readingTime":2539},"blog\u002Fblog\u002F2019\u002F08\u002F08\u002Fcss-grid-generator.md","\u002Fblog\u002F2019\u002F08\u002F08\u002Fcss-grid-generator","Learn how to use CSS Grid with a FREE tool CSS Grid Generator","Learn how to create a CSS Grid Layout with a free tool called CSS Grid Generator",{"slug":2534,"date":2535,"published":12,"tags":2536,"author":16,"cover":2537,"video":2538,"excerpt":11,"shortDesc":2532},"css-grid-generator","2019-08-08T18:13:57.456Z",[2408,2299],".\u002Fcss-grid-generator-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FZopBBEs9TPg",{"minutes":830,"text":831},{"_id":2541,"path":2542,"title":2543,"description":2544,"meta":2545,"readingTime":2551},"blog\u002Fblog\u002F2019\u002F07\u002F23\u002Fwebsite-new-features-improvements.md","\u002Fblog\u002F2019\u002F07\u002F23\u002Fwebsite-new-features-improvements","New Features and Improvements to my website","In this article I am going to walk you through some of the new features I have been working on for my website",{"slug":2546,"date":2547,"published":12,"tags":2548,"author":16,"cover":2550,"video":11,"excerpt":11,"shortDesc":2544},"website-new-features-improvements","2019-07-23T11:20:30.619Z",[2549,2299,2409],"blog",".\u002Fwebsite-new-features-cover.png",{"minutes":939,"text":940},{"_id":2553,"path":2554,"title":2555,"description":2556,"meta":2557,"readingTime":2563},"blog\u002Fblog\u002F2019\u002F06\u002F13\u002Fvuepress-cookies.md","\u002Fblog\u002F2019\u002F06\u002F13\u002Fvuepress-cookies","How to use cookies in VuePress","In this article, I am going to talk about a recent documentation site to VuePress and how I was able to solve a problem I ran across.",{"slug":2558,"date":2559,"published":12,"tags":2560,"author":16,"cover":2562,"video":11,"excerpt":11,"shortDesc":2556},"vuepress-cookies","2019-06-13T10:27:46.175Z",[2299,2561],"vuepress",".\u002Fvuepress-cookies-cover.png",{"minutes":939,"text":940},{"_id":2565,"path":2566,"title":2567,"description":2568,"meta":2569,"readingTime":2575},"blog\u002Fblog\u002F2019\u002F06\u002F05\u002Ftriggering-events-router-vue.md","\u002Fblog\u002F2019\u002F06\u002F05\u002Ftriggering-events-router-vue","Triggering events from Vue Router views","In this article I will show you how to trigger events from views using the Router View component.",{"slug":2570,"date":2571,"published":12,"tags":2572,"author":16,"cover":2573,"video":2574,"excerpt":11,"shortDesc":2568},"triggering-events-router-vue","2019-06-05T20:13:17.445Z",[2299],".\u002Ftriggering-events-router-vue-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJwccQYpsE2Q",{"minutes":724,"text":725},{"_id":2577,"path":2578,"title":2579,"description":2580,"meta":2581,"readingTime":2587},"blog\u002Fblog\u002F2019\u002F05\u002F31\u002Fescape-backtick-markdown.md","\u002Fblog\u002F2019\u002F05\u002F31\u002Fescape-backtick-markdown","How to escape a backtick within a code block in Markdown","In this article I will show you how to escape the triple backtick in a markdown code block so that you can display it in a post or a Github comment. ",{"slug":2582,"date":2583,"published":12,"tags":2584,"author":16,"cover":2586,"video":11,"excerpt":11,"shortDesc":2580},"escape-backtick-markdown","2019-05-31T18:32:41.710Z",[2585,2549],"markdown",".\u002Fescape-backtick-markdown-cover.png",{"minutes":1866,"text":1867},{"_id":2589,"path":2590,"title":2591,"description":2592,"meta":2593,"readingTime":2600},"blog\u002Fblog\u002F2019\u002F05\u002F17\u002Fvue-cli-error.md","\u002Fblog\u002F2019\u002F05\u002F17\u002Fvue-cli-error","Vue CLI ValidationError: webpack Dev Server Invalid Options","In this article, I will tell you about an error I received while trying to run and new VueJS project this morning and how I was able to fix it.",{"slug":2594,"date":2595,"published":12,"tags":2596,"author":16,"cover":2599,"video":11,"excerpt":11,"shortDesc":2592},"vue-cli-error","2019-05-17T15:25:36.871Z",[2299,2597,2598,2008],"npm","nodejs","vue-cli-validation-error.png",{"minutes":790,"text":791},{"_id":2602,"path":2603,"title":2604,"description":2605,"meta":2606,"readingTime":2612},"blog\u002Fblog\u002F2019\u002F05\u002F15\u002Frun-vue-visual-studio-code.md","\u002Fblog\u002F2019\u002F05\u002F15\u002Frun-vue-visual-studio-code","3 ways to run VueJS applications from Visual Studio Code","In this tutorial, I am going to show you 3 ways to run your VueJS applications from Visual Studio Code. ",{"slug":2607,"date":2608,"published":12,"tags":2609,"author":16,"cover":2611,"video":11,"excerpt":11,"shortDesc":2605},"run-vue-visual-studio-code","2019-05-15T14:19:36.459Z",[2299,2597,2610,2008],"vscode",".\u002Frun-vue-visual-studio-code-cover.png",{"minutes":845,"text":846},{"_id":2614,"path":2615,"title":2616,"description":2617,"meta":2618,"readingTime":2624},"blog\u002Fblog\u002F2019\u002F05\u002F10\u002Fwhat-you-can-learn-from-live-coders.md","\u002Fblog\u002F2019\u002F05\u002F10\u002Fwhat-you-can-learn-from-live-coders","What you can learn from live coders","2019 seems to be the year of the live coder. In this article I am going to tell you what you can learn from live coders. ",{"slug":2619,"date":2620,"published":12,"tags":2621,"author":16,"cover":2623,"video":11,"excerpt":11,"shortDesc":2617},"what-you-can-learn-from-live-coders","2019-05-10T18:42:50.066Z",[2622,486],"twitch",".\u002Flive-coders-cover.png",{"minutes":620,"text":621},{"_id":2626,"path":2627,"title":2628,"description":2629,"meta":2630,"readingTime":2636},"blog\u002Fblog\u002F2019\u002F05\u002F08\u002Fcodesandbox-custom-theme.md","\u002Fblog\u002F2019\u002F05\u002F08\u002Fcodesandbox-custom-theme","How to customize the VSCode Theme in CodeSandbox","In this article, I am going to give you a quick tip on how to customize the VSCode Theme in CodeSandbox.",{"slug":2631,"date":2632,"published":12,"tags":2633,"author":16,"cover":2635,"video":11,"excerpt":11,"shortDesc":2629},"codesandbox-custom-theme","2019-05-08T01:56:43.680Z",[2634],"codesandbox",".\u002Fcodesandbox-custom-theme-cover.png",{"minutes":254,"text":2127},{"_id":2638,"path":2639,"title":2640,"description":2641,"meta":2642,"readingTime":2647},"blog\u002Fblog\u002F2019\u002F05\u002F02\u002Fgridsome-codesandbox-plugin.md","\u002Fblog\u002F2019\u002F05\u002F02\u002Fgridsome-codesandbox-plugin","How I created a CodeSandbox plugin for Gridsome","In this article, I am going to introduce you to CodeSandbox and tell you a little bit about why I love it so much",{"slug":2643,"date":2644,"published":12,"tags":2645,"author":16,"cover":2646,"video":11,"excerpt":11,"shortDesc":2641},"gridsome-codesandbox-plugin","2019-05-02T15:30:43.839Z",[2299,2409,2634],".\u002Fgridsome-codesandbox-plugin-cover.png",{"minutes":1310,"text":1311},{"_id":2649,"path":2650,"title":2651,"description":2652,"meta":2653,"readingTime":2658},"blog\u002Fblog\u002F2019\u002F04\u002F30\u002Fup-and-running-with-vue.md","\u002Fblog\u002F2019\u002F04\u002F30\u002Fup-and-running-with-vue","Everything you need to get up and running with VueJS","In this article, I am going to tell you why I love Vue and give you 4 different ways you can write your first application.",{"slug":2654,"date":2655,"published":12,"tags":2656,"author":16,"cover":2657,"video":11,"excerpt":11,"shortDesc":2652},"up-and-running-with-vue","2019-04-30T19:38:42.927Z",[2299,2008],".\u002Fup-and-running-with-vue-cover.png",{"minutes":1310,"text":1311},{"_id":2660,"path":2661,"title":2662,"description":2663,"meta":2664,"readingTime":2670},"blog\u002Fblog\u002F2019\u002F04\u002F25\u002Fmy-new-blog-post-workflow.md","\u002Fblog\u002F2019\u002F04\u002F25\u002Fmy-new-blog-post-workflow","My new blog post workflow","In this article I will outline for you the tools and process I use to create a new blog post",{"slug":2665,"date":2666,"published":12,"tags":2667,"author":16,"cover":2669,"video":11,"excerpt":11,"shortDesc":2663},"my-new-blog-post-workflow","2019-04-25T13:53:35.054Z",[2668],"blogging","super-snapper-zIwAchjDirM-unsplash.jpg",{"minutes":859,"text":860},{"_id":2672,"path":2673,"title":2674,"description":2675,"meta":2676,"readingTime":2682},"blog\u002Fblog\u002F2019\u002F04\u002F23\u002Fgridsome-blog-post-generator.md","\u002Fblog\u002F2019\u002F04\u002F23\u002Fgridsome-blog-post-generator","Gridsome Blog Post Generator","In this article I will show you how to crate a blog post generator for your static site.",{"slug":2677,"date":2678,"published":12,"tags":2679,"author":16,"cover":2681,"video":11,"excerpt":11,"shortDesc":2675},"gridsome-blog-post-generator","2019-04-23T19:28:51.186Z",[2680],"Vue","nick-morrison-FHnnjk1Yj7Y-unsplash.jpg",{"minutes":636,"text":637},{"_id":2684,"path":2685,"title":2686,"description":2687,"meta":2688,"readingTime":2694},"blog\u002Fblog\u002F2019\u002F04\u002F19\u002Fnpm-scripts-parallel.md","\u002Fblog\u002F2019\u002F04\u002F19\u002Fnpm-scripts-parallel","How to run multiple npm scripts in parallel","In this article I will talk about a problem I ran into recently and a couple of the solutions I found.",{"slug":2689,"date":2690,"published":12,"tags":2691,"author":16,"cover":2693,"video":11,"excerpt":11,"shortDesc":2687},"npm-scripts-parallel","2019-04-19T16:51:56.537Z",[2597,2692,2008],"node",".\u002Fnpm-parallel-cover.png",{"minutes":697,"text":698},{"_id":2696,"path":2697,"title":2698,"description":2699,"meta":2700,"readingTime":2705},"blog\u002Fblog\u002F2019\u002F04\u002F18\u002Fvue-tips-avoid-direct-dom-manipulation.md","\u002Fblog\u002F2019\u002F04\u002F18\u002Fvue-tips-avoid-direct-dom-manipulation","Tips for Vue Developers: Avoid directly manipulating the DOM","In this article I will look at an example of where manipulating the DOM in our components might not be the best approach.",{"slug":2701,"date":2702,"published":12,"tags":2703,"author":16,"cover":2704,"video":11,"excerpt":11,"shortDesc":2699},"vue-tips-avoid-direct-dom-manipulation","2019-04-18T20:24:32.502Z",[2299,2008],".\u002Fvue-dom.png",{"minutes":845,"text":846},{"_id":2707,"path":2708,"title":2709,"description":2710,"meta":2711,"readingTime":2716},"blog\u002Fblog\u002F2019\u002F04\u002F11\u002Fdont-call-it-a-comeback.md","\u002Fblog\u002F2019\u002F04\u002F11\u002Fdont-call-it-a-comeback","Personal Blogs: Don't Call it a comeback!","I'm not sure if you have noticed or not but the personal blog is making a comeback",{"slug":2712,"date":2713,"published":12,"tags":2714,"author":16,"cover":2715,"video":11,"excerpt":11,"shortDesc":2710},"dont-call-it-a-comeback","2019-04-11T11:38:39.435Z",[2668],".\u002Fpersonal-blog-4b0867c8-0c1b-421c-afaf-7fc7e7986a77.png",{"minutes":845,"text":846},{"_id":2718,"path":2719,"title":2720,"description":2721,"meta":2722,"readingTime":2727},"blog\u002Fblog\u002F2019\u002F04\u002F09\u002Fadding-twitter-cards-to-gridsome.md","\u002Fblog\u002F2019\u002F04\u002F09\u002Fadding-twitter-cards-to-gridsome","Adding Twitter Cards to Gridsome","In this tutorial I will show you how to add Twitter Cards to your Gridsome Blog.",{"slug":2723,"date":2724,"published":12,"tags":2725,"author":16,"cover":2726,"video":11,"excerpt":11,"shortDesc":2721},"adding-twitter-cards-to-gridsome","2019-04-09T19:21:53.368Z",[2299,2409],".\u002Ftwittter-cards-gridsome-cover-936ee6d4-220e-4800-873c-9d700fa44469.png",{"minutes":873,"text":874},{"_id":2729,"path":2730,"title":2731,"description":2732,"meta":2733,"readingTime":2738},"blog\u002Fblog\u002F2019\u002F03\u002F14\u002Ffind-max-array-objects-javascript.md","\u002Fblog\u002F2019\u002F03\u002F14\u002Ffind-max-array-objects-javascript","How to find the max id in an array of objects in JavaScript","A quick tutorial on the thought process on how you would go about finding the max id in an array of objects in JavaScript",{"slug":2734,"date":2735,"published":12,"tags":2736,"author":16,"cover":2737,"video":11,"excerpt":11,"shortDesc":2732},"find-max-array-objects-javascript","2019-03-14T10:59:53.416Z",[2008],"joshua-aragon-EaB4Ml7C7fE-unsplash.jpg",{"minutes":620,"text":621},{"_id":2740,"path":2741,"title":2742,"description":2743,"meta":2744,"readingTime":2749},"blog\u002Fblog\u002F2019\u002F03\u002F07\u002Fspring-initializr-fresh-look.md","\u002Fblog\u002F2019\u002F03\u002F07\u002Fspring-initializr-fresh-look","Spring Initializr's Fresh New Look","In this article I will tell you what the Spring Initializr is and give you my thoughts on the new redesign.",{"slug":2745,"date":2746,"published":12,"tags":2747,"author":16,"cover":2748,"video":11,"excerpt":11,"shortDesc":2743},"spring-initializr-fresh-look","2019-03-07 17:00:00",[1509],".\u002Fspring-init-cover.png",{"minutes":254,"text":2127},{"_id":2751,"path":2752,"title":2753,"description":2754,"meta":2755,"readingTime":2760},"blog\u002Fblog\u002F2019\u002F03\u002F04\u002Fvue-event-arguments.md","\u002Fblog\u002F2019\u002F03\u002F04\u002Fvue-event-arguments","Vue Event Handler Arguments","In this article you are going to learn how to pass arguments to your Vue event handlers as well as how get access to the original DOM event.",{"slug":2756,"date":2757,"published":12,"tags":2758,"author":16,"cover":2759,"video":11,"excerpt":11,"shortDesc":2754},"vue-event-arguments","2019-03-04 10:00:00",[2299,2008],".\u002Fvue-event-arguments.png",{"minutes":1498,"text":1499},{"_id":2762,"path":2763,"title":2764,"description":2765,"meta":2766,"readingTime":2771},"blog\u002Fblog\u002F2019\u002F02\u002F21\u002Fnode-recursive-directories.md","\u002Fblog\u002F2019\u002F02\u002F21\u002Fnode-recursive-directories","Creating multiple directories in node","A quick tutorial on how to recursively create directories in node.",{"slug":2767,"date":2768,"published":12,"tags":2769,"author":16,"cover":2770,"video":11,"excerpt":11,"shortDesc":2765},"node-recursive-directories","2019-02-21 08:00:00",[2692,2008],"node-multiple-directories.png",{"minutes":859,"text":860},{"_id":2773,"path":2774,"title":2775,"description":2776,"meta":2777,"readingTime":2783},"blog\u002Fblog\u002F2019\u002F02\u002F18\u002Ftwitter-cards-meta-tags.md","\u002Fblog\u002F2019\u002F02\u002F18\u002Ftwitter-cards-meta-tags","How to add Twitter Card Meta Tags to your Blog","In this tutorial you will learn what a Twitter Card is along with step by step instructions how to add them to your blog and validate that they are working.",{"slug":2778,"date":2779,"published":12,"tags":2780,"author":16,"cover":2782,"video":11,"excerpt":11,"shortDesc":2776},"twitter-cards-meta-tags","2019-02-18 22:00:00",[2781],"html",".\u002Ftwitter-cards.png",{"minutes":845,"text":846},{"_id":2785,"path":2786,"title":2787,"description":2788,"meta":2789,"readingTime":2794},"blog\u002Fblog\u002F2019\u002F02\u002F13\u002Fhtml-template-tag.md","\u002Fblog\u002F2019\u002F02\u002F13\u002Fhtml-template-tag","HTML Template Tag in Vanilla JavaScript and Vue","A look at what the HTML template tag is and how it can be used in Vanilla JavaScript as well as what its role in Vue is.",{"slug":2790,"date":2791,"published":12,"tags":2792,"author":16,"cover":2793,"video":11,"excerpt":11,"shortDesc":2788},"html-template-tag","2019-02-13 22:30:00",[2781,2008,2299],".\u002Fhtml-template-cover.png",{"minutes":939,"text":940},{"_id":2796,"path":2797,"title":2798,"description":2799,"meta":2800,"readingTime":2805},"blog\u002Fblog\u002F2019\u002F02\u002F10\u002Fcreating-your-first-npm-package.md","\u002Fblog\u002F2019\u002F02\u002F10\u002Fcreating-your-first-npm-package","Creating your first npm package","How to create your first npm package and publish it.",{"slug":2801,"date":2802,"published":12,"tags":2803,"author":16,"cover":2804,"video":11,"excerpt":11,"shortDesc":2799},"creating-your-first-npm-package","2019-02-10 11:00:00",[2692,2597,2008],".\u002Fnpm_cover.png",{"minutes":1498,"text":1499},{"_id":2807,"path":2808,"title":2809,"description":2810,"meta":2811,"readingTime":2816},"blog\u002Fblog\u002F2019\u002F01\u002F31\u002Fhello-gridsome.md","\u002Fblog\u002F2019\u002F01\u002F31\u002Fhello-gridsome","Hello, Gridsome!","A quick write up on why I started a new blog and what I plan to do with it.",{"slug":2812,"date":2813,"published":12,"tags":2814,"author":11,"cover":2815,"video":11,"excerpt":11,"shortDesc":2810},"hello-gridsome","2019-01-31 10:00:00",[2299],".\u002Fgridsome.png",{"minutes":620,"text":621},{"_id":2818,"path":2819,"title":2820,"description":2820,"meta":2821,"readingTime":2826},"blog\u002Fblog\u002F2019\u002F01\u002F01\u002Fhappy-new-year-my-2019-goals.md","\u002Fblog\u002F2019\u002F01\u002F01\u002Fhappy-new-year-my-2019-goals","Happy New Year! My 2019 Goals",{"slug":2822,"date":2823,"published":12,"tags":2824,"author":11,"cover":2825,"video":11,"excerpt":11,"shortDesc":2820},"happy-new-year-my-2019-goals","2019-01-01T08:38:10-05:00",[2077],".\u002F2019-cover.png",{"minutes":749,"text":750},{"_id":2828,"path":2829,"title":2830,"description":2830,"meta":2831,"readingTime":2836},"blog\u002Fblog\u002F2018\u002F12\u002F24\u002Fmy-2018-year-in-review.md","\u002Fblog\u002F2018\u002F12\u002F24\u002Fmy-2018-year-in-review","My 2018 Year in Review",{"slug":2832,"date":2833,"published":12,"tags":2834,"author":11,"cover":2835,"video":11,"excerpt":11,"shortDesc":2830},"my-2018-year-in-review","2018-12-24T08:52:12-05:00",[2077],".\u002F2018-cover.png",{"minutes":749,"text":750},{"_id":2838,"path":2839,"title":2840,"description":2840,"meta":2841,"readingTime":2848},"blog\u002Fblog\u002F2018\u002F12\u002F21\u002Fmacbook-pro-setup-my-setup-with-detailed-instructions.md","\u002Fblog\u002F2018\u002F12\u002F21\u002Fmacbook-pro-setup-my-setup-with-detailed-instructions","MacBook Pro Setup: My setup with detailed instructions",{"slug":2842,"date":2843,"published":12,"tags":2844,"author":11,"cover":2847,"video":11,"excerpt":11,"shortDesc":2840},"macbook-pro-setup-my-setup-with-detailed-instructions","2018-12-21T14:17:22-05:00",[2845,2846],"mac","web development",".\u002Ftobias-lystad-606045-unsplash-1024x683.jpg",{"minutes":666,"text":667},{"_id":2850,"path":2851,"title":2852,"description":2852,"meta":2853,"readingTime":2859},"blog\u002Fblog\u002F2018\u002F11\u002F20\u002Fnew-course-getting-started-with-spring-boot-2.md","\u002Fblog\u002F2018\u002F11\u002F20\u002Fnew-course-getting-started-with-spring-boot-2","New Course: Getting Started with Spring Boot 2",{"slug":2854,"date":2855,"published":12,"tags":2856,"author":11,"cover":2858,"video":11,"excerpt":11,"shortDesc":2852},"new-course-getting-started-with-spring-boot-2","2018-11-20T12:39:53-05:00",[2857],"courses",".\u002Fteachable_course_graphic-760x428.png",{"minutes":239,"text":2302},{"_id":2861,"path":2862,"title":2863,"description":2863,"meta":2864,"readingTime":2870},"blog\u002Fblog\u002F2018\u002F11\u002F06\u002Fcleveland-women-in-tech-conference-recap.md","\u002Fblog\u002F2018\u002F11\u002F06\u002Fcleveland-women-in-tech-conference-recap","Cleveland Women in Tech Conference Recap",{"slug":2865,"date":2866,"published":12,"tags":2867,"author":11,"cover":2869,"video":11,"excerpt":11,"shortDesc":2863},"cleveland-women-in-tech-conference-recap","2018-11-06T11:59:51-05:00",[2298,2868],"presentation",".\u002FIMG_4467.jpg",{"minutes":749,"text":750},{"_id":2872,"path":2873,"title":2874,"description":2874,"meta":2875,"readingTime":2880},"blog\u002Fblog\u002F2018\u002F11\u002F05\u002Fcleveland-women-in-tech-presentation.md","\u002Fblog\u002F2018\u002F11\u002F05\u002Fcleveland-women-in-tech-presentation","Cleveland Women in Tech Presentation",{"slug":2876,"date":2877,"published":12,"tags":2878,"author":11,"cover":2879,"video":11,"excerpt":11,"shortDesc":2874},"cleveland-women-in-tech-presentation","2018-11-05T06:50:29-05:00",[2298,2868],".\u002Fmerherstory-cover.png",{"minutes":239,"text":2302},{"_id":2882,"path":2883,"title":2884,"description":2884,"meta":2885,"readingTime":2891},"blog\u002Fblog\u002F2018\u002F09\u002F07\u002Fi-am-joining-tech-elevator.md","\u002Fblog\u002F2018\u002F09\u002F07\u002Fi-am-joining-tech-elevator","I am joining Tech Elevator",{"slug":2886,"date":2887,"published":12,"tags":2888,"author":11,"cover":2890,"video":11,"excerpt":11,"shortDesc":2884},"i-am-joining-tech-elevator","2018-09-07T01:00:58-04:00",[2889],"Tech Elevator",".\u002FStacked-Logo-760x202.jpg",{"minutes":1866,"text":1867},{"_id":2893,"path":2894,"title":2895,"description":2895,"meta":2896,"readingTime":2902},"blog\u002Fblog\u002F2018\u002F04\u002F25\u002Fjava-development-2018.md","\u002Fblog\u002F2018\u002F04\u002F25\u002Fjava-development-2018","What you should learn as a Java Developer in 2018",{"slug":2897,"date":2898,"published":12,"tags":2899,"author":11,"cover":2900,"video":2901,"excerpt":11,"shortDesc":2895},"java-development-2018","2018-04-25T06:39:22-04:00",[677],".\u002Fjava_development_in_2018-760x428","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMLXj0hd3usk",{"minutes":254,"text":2127},{"_id":2904,"path":2905,"title":2906,"description":2906,"meta":2907,"readingTime":2912},"blog\u002Fblog\u002F2018\u002F03\u002F01\u002Fwhat-is-new-spring-boot-2.md","\u002Fblog\u002F2018\u002F03\u002F01\u002Fwhat-is-new-spring-boot-2","What's new in Spring Boot 2",{"slug":2908,"date":2909,"published":12,"tags":2910,"author":11,"cover":2911,"video":11,"excerpt":11,"shortDesc":2906},"what-is-new-spring-boot-2","2018-03-01T06:47:52-05:00",[677,1509],".\u002Fpexels-photo-273238-2-760x507.jpeg",{"minutes":775,"text":776},{"_id":2914,"path":2915,"title":2916,"description":2916,"meta":2917,"readingTime":2921},"blog\u002Fblog\u002F2018\u002F01\u002F01\u002Fmy-2018-goals.md","\u002Fblog\u002F2018\u002F01\u002F01\u002Fmy-2018-goals","Happy New Year!!! My 2018 Goals",{"slug":2918,"date":2919,"published":12,"tags":2920,"author":11,"cover":2835,"video":11,"excerpt":11,"shortDesc":2916},"my-2018-goals","2018-01-01T08:50:40-05:00",[2077],{"minutes":683,"text":684},{"_id":2923,"path":2924,"title":2925,"description":2925,"meta":2926,"readingTime":2931},"blog\u002Fblog\u002F2017\u002F12\u002F29\u002Fmy-2017-year-in-review.md","\u002Fblog\u002F2017\u002F12\u002F29\u002Fmy-2017-year-in-review","My 2017 Year in Review",{"slug":2927,"date":2928,"published":12,"tags":2929,"author":11,"cover":2930,"video":11,"excerpt":11,"shortDesc":2925},"my-2017-year-in-review","2017-12-29T09:14:08-05:00",[2077],".\u002Fpexels-photo-282919-760x571.jpeg",{"minutes":254,"text":2127},{"_id":2933,"path":2934,"title":2935,"description":2935,"meta":2936,"readingTime":2941},"blog\u002Fblog\u002F2017\u002F12\u002F08\u002Fgetting-started-with-java.md","\u002Fblog\u002F2017\u002F12\u002F08\u002Fgetting-started-with-java","Getting Started with Java course",{"slug":2937,"date":2938,"published":12,"tags":2939,"author":11,"cover":2940,"video":11,"excerpt":11,"shortDesc":2935},"getting-started-with-java","2017-12-08T09:00:23-05:00",[677],".\u002Fapple-computer-desk-18105.jpg",{"minutes":1406,"text":1407},{"_id":2943,"path":2944,"title":2945,"description":2945,"meta":2946,"readingTime":2951},"blog\u002Fblog\u002F2017\u002F11\u002F08\u002Fangular-4-java-developers-course-now-live.md","\u002Fblog\u002F2017\u002F11\u002F08\u002Fangular-4-java-developers-course-now-live","Angular 4 Java Developers Course is now Live!",{"slug":2947,"date":2948,"published":12,"tags":2949,"author":11,"cover":2950,"video":11,"excerpt":11,"shortDesc":2945},"angular-4-java-developers-course-now-live","2017-11-08T16:15:32-05:00",[677,1509],".\u002Fgreetings_java_hipsters-760x525.png",{"minutes":1406,"text":1407},{"_id":2953,"path":2954,"title":2955,"description":2955,"meta":2956,"readingTime":2962},"blog\u002Fblog\u002F2017\u002F10\u002F04\u002Fcompile-groovy-java-gradle-build.md","\u002Fblog\u002F2017\u002F10\u002F04\u002Fcompile-groovy-java-gradle-build","How to compile Groovy before Java in a Gradle Build",{"slug":2957,"date":2958,"published":12,"tags":2959,"author":11,"cover":2961,"video":11,"excerpt":11,"shortDesc":2955},"compile-groovy-java-gradle-build","2017-10-04T08:32:40-04:00",[2960],"groovy",".\u002F614px-Groovy-logo.svg_-e1459476180685.png",{"minutes":697,"text":698},{"_id":2964,"path":2965,"title":2966,"description":2966,"meta":2967,"readingTime":2972},"blog\u002Fblog\u002F2017\u002F09\u002F22\u002Fget-hot-java-9.md","\u002Fblog\u002F2017\u002F09\u002F22\u002Fget-hot-java-9","Get it while it's hot. Java 9 is out!",{"slug":2968,"date":2969,"published":12,"tags":2970,"author":11,"cover":2971,"video":11,"excerpt":11,"shortDesc":2966},"get-hot-java-9","2017-09-22T08:21:00-04:00",[677],".\u002F2017-09-22_07-39-27-760x504.png",{"minutes":254,"text":2127},{"_id":2974,"path":2975,"title":2976,"description":2976,"meta":2977,"readingTime":2983},"blog\u002Fblog\u002F2017\u002F09\u002F11\u002Fmonolithic-vs-microservices.md","\u002Fblog\u002F2017\u002F09\u002F11\u002Fmonolithic-vs-microservices","When to use Microservices over Monolithic Architecture",{"slug":2978,"date":2979,"published":12,"tags":2980,"author":11,"cover":2982,"video":11,"excerpt":11,"shortDesc":2976},"monolithic-vs-microservices","2017-09-11T08:30:19-04:00",[2981,1509],"Software Development",".\u002Fpexels-photo-325229-760x266.jpeg",{"minutes":1866,"text":1867},{"_id":2985,"path":2986,"title":2987,"description":2987,"meta":2988,"readingTime":2994},"blog\u002Fblog\u002F2017\u002F09\u002F06\u002Fupgrade-new-angular-command-line-interface-cli-1-3-release.md","\u002Fblog\u002F2017\u002F09\u002F06\u002Fupgrade-new-angular-command-line-interface-cli-1-3-release","How to upgrade to the new Angular Command Line Interface (CLI) 1.3 release",{"slug":2989,"date":2990,"published":12,"tags":2991,"author":11,"cover":2993,"video":11,"excerpt":11,"shortDesc":2987},"upgrade-new-angular-command-line-interface-cli-1-3-release","2017-09-06T09:07:30-04:00",[2992],"Angular",".\u002Fpexels-photo-247791-1024x562.png",{"minutes":1866,"text":1867},{"_id":2996,"path":2997,"title":2998,"description":2998,"meta":2999,"readingTime":3004},"blog\u002Fblog\u002F2017\u002F08\u002F30\u002Fgroovy-happens-assign-biginteger-integer.md","\u002Fblog\u002F2017\u002F08\u002F30\u002Fgroovy-happens-assign-biginteger-integer","Groovy: What happens when you assign a BigInteger to an Integer",{"slug":3000,"date":3001,"published":12,"tags":3002,"author":11,"cover":3003,"video":11,"excerpt":11,"shortDesc":2998},"groovy-happens-assign-biginteger-integer","2017-08-30T07:39:40-04:00",[2960,677],".\u002Fcodes-coding.jpg",{"minutes":239,"text":2302},{"_id":3006,"path":3007,"title":3008,"description":3008,"meta":3009,"readingTime":3014},"blog\u002Fblog\u002F2017\u002F08\u002F28\u002Fusing-jhipster-development-mode.md","\u002Fblog\u002F2017\u002F08\u002F28\u002Fusing-jhipster-development-mode","Using JHipster in Development mode",{"slug":3010,"date":3011,"published":12,"tags":3012,"author":11,"cover":3013,"video":11,"excerpt":11,"shortDesc":3008},"using-jhipster-development-mode","2017-08-28T09:30:30-04:00",[2992,1509],".\u002Fwallpaper-001-2560x1440-760x428.png",{"minutes":239,"text":2302},{"_id":3016,"path":3017,"title":3018,"description":3018,"meta":3019,"readingTime":3024},"blog\u002Fblog\u002F2017\u002F08\u002F16\u002Fmultiple-dependencies-spring-cli.md","\u002Fblog\u002F2017\u002F08\u002F16\u002Fmultiple-dependencies-spring-cli","How to add multiple dependencies with the Spring CLI",{"slug":3020,"date":3021,"published":12,"tags":3022,"author":11,"cover":3023,"video":11,"excerpt":11,"shortDesc":3018},"multiple-dependencies-spring-cli","2017-08-16T08:30:40-04:00",[1509],".\u002Fpexels-photo-205421-760x506.jpeg",{"minutes":1866,"text":1867},{"_id":3026,"path":3027,"title":3028,"description":3028,"meta":3029,"readingTime":3034},"blog\u002Fblog\u002F2017\u002F08\u002F04\u002F3-youtube-channels-java-developers.md","\u002Fblog\u002F2017\u002F08\u002F04\u002F3-youtube-channels-java-developers","3 YouTube Channels for Java Developers",{"slug":3030,"date":3031,"published":12,"tags":3032,"author":11,"cover":3033,"video":11,"excerpt":11,"shortDesc":3028},"3-youtube-channels-java-developers","2017-08-04T13:14:00-04:00",[677,1509],".\u002Fpexels-photo-760x506.jpg",{"minutes":209,"text":2505},{"_id":3036,"path":3037,"title":3038,"description":3038,"meta":3039,"readingTime":3044},"blog\u002Fblog\u002F2017\u002F07\u002F31\u002Fspring-data-aggregate-functions-repository.md","\u002Fblog\u002F2017\u002F07\u002F31\u002Fspring-data-aggregate-functions-repository","Spring Data Aggregate Functions in a repository",{"slug":3040,"date":3041,"published":12,"tags":3042,"author":11,"cover":3043,"video":11,"excerpt":11,"shortDesc":3038},"spring-data-aggregate-functions-repository","2017-07-31T08:48:35-04:00",[1509],".\u002Fpexels-photo-374074-760x506.jpeg",{"minutes":790,"text":791},{"_id":3046,"path":3047,"title":3048,"description":3049,"meta":3050,"readingTime":3055},"blog\u002Fblog\u002F2017\u002F07\u002F26\u002Fuse-hikaricp-next-spring-boot-project.md","\u002Fblog\u002F2017\u002F07\u002F26\u002Fuse-hikaricp-next-spring-boot-project","How to Use HikariCP as Your Spring Boot Connection Pool","Learn how to use HikariCP, the high-performance JDBC connection pool, in Spring Boot and configure it via application.properties and auto-configuration.",{"slug":3051,"date":3052,"published":12,"tags":3053,"author":11,"cover":3054,"video":11,"excerpt":11,"shortDesc":3049},"use-hikaricp-next-spring-boot-project","2017-07-26T08:16:50-04:00",[677,1509],".\u002Fpexels-photo-169976-760x506.jpeg",{"minutes":749,"text":750},{"_id":3057,"path":3058,"title":3059,"description":3059,"meta":3060,"readingTime":3065},"blog\u002Fblog\u002F2017\u002F07\u002F24\u002Fspring-boot-application-failed-start.md","\u002Fblog\u002F2017\u002F07\u002F24\u002Fspring-boot-application-failed-start","Spring Boot Application Failed To Start",{"slug":3061,"date":3062,"published":12,"tags":3063,"author":11,"cover":3064,"video":11,"excerpt":11,"shortDesc":3059},"spring-boot-application-failed-start","2017-07-24T09:55:33-04:00",[677,1509],".\u002Fpexels-photo-205316-760x506.png",{"minutes":749,"text":750},{"_id":3067,"path":3068,"title":3069,"description":3069,"meta":3070,"readingTime":3076},"blog\u002Fblog\u002F2017\u002F07\u002F05\u002Fread-json-data-spring-boot-write-database.md","\u002Fblog\u002F2017\u002F07\u002F05\u002Fread-json-data-spring-boot-write-database","How to read JSON data in Spring Boot and write to a database",{"slug":3071,"date":3072,"published":12,"tags":3073,"author":11,"cover":3074,"video":3075,"excerpt":11,"shortDesc":3069},"read-json-data-spring-boot-write-database","2017-07-05T12:00:27-04:00",[1509],".\u002Fpexels-photo-374899-760x506.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FrGdKmF2UzSc",{"minutes":873,"text":874},{"_id":3078,"path":3079,"title":3080,"description":3080,"meta":3081,"readingTime":3086},"blog\u002Fblog\u002F2017\u002F07\u002F03\u002Fmultiple-request-mappings-spring-boot.md","\u002Fblog\u002F2017\u002F07\u002F03\u002Fmultiple-request-mappings-spring-boot","Multiple Request Mappings in Spring Boot",{"slug":3082,"date":3083,"published":12,"tags":3084,"author":11,"cover":3085,"video":11,"excerpt":11,"shortDesc":3080},"multiple-request-mappings-spring-boot","2017-07-03T08:30:50-04:00",[1509],".\u002Fpexels-photo-450035-760x506.jpeg",{"minutes":1866,"text":1867},{"_id":3088,"path":3089,"title":3090,"description":3090,"meta":3091,"readingTime":3096},"blog\u002Fblog\u002F2017\u002F06\u002F30\u002F9-presentations-can-watch-right-now-learn-java-9.md","\u002Fblog\u002F2017\u002F06\u002F30\u002F9-presentations-can-watch-right-now-learn-java-9","9 Presentations you can watch right now to learn about Java 9",{"slug":3092,"date":3093,"published":12,"tags":3094,"author":11,"cover":3095,"video":11,"excerpt":11,"shortDesc":3090},"9-presentations-can-watch-right-now-learn-java-9","2017-06-30T08:00:48-04:00",[677],".\u002Fcoding.jpg",{"minutes":790,"text":791},{"_id":3098,"path":3099,"title":3100,"description":3100,"meta":3101,"readingTime":3106},"blog\u002Fblog\u002F2017\u002F06\u002F28\u002Fdeploying-war-application-server-spring-boot.md","\u002Fblog\u002F2017\u002F06\u002F28\u002Fdeploying-war-application-server-spring-boot","Deploying a WAR to an application server in Spring Boot",{"slug":3102,"date":3103,"published":12,"tags":3104,"author":11,"cover":3105,"video":11,"excerpt":11,"shortDesc":3100},"deploying-war-application-server-spring-boot","2017-06-28T09:14:15-04:00",[1509],".\u002Fpexels-photo-292627-760x506.jpeg",{"minutes":620,"text":621},{"_id":3108,"path":3109,"title":3110,"description":3111,"meta":3112,"readingTime":3117},"blog\u002Fblog\u002F2017\u002F06\u002F26\u002Fspring-boot-configuration-using-yaml.md","\u002Fblog\u002F2017\u002F06\u002F26\u002Fspring-boot-configuration-using-yaml","Spring Boot Configuration using YAML","Learn Spring Boot YAML configuration with application.yml — inject properties with @Value, use Spring profiles, and manage dev and production environments.",{"slug":3113,"date":3114,"published":12,"tags":3115,"author":11,"cover":3116,"video":11,"excerpt":11,"shortDesc":3111},"spring-boot-configuration-using-yaml","2017-06-26T09:00:06-04:00",[1509],".\u002Femile-perron-190221-760x428.jpg",{"minutes":697,"text":698},{"_id":3119,"path":3120,"title":3121,"description":3121,"meta":3122,"readingTime":3127},"blog\u002Fblog\u002F2017\u002F06\u002F23\u002Fbuilding-angular-spring-boot.md","\u002Fblog\u002F2017\u002F06\u002F23\u002Fbuilding-angular-spring-boot","Building your Angular Application for Spring Boot",{"slug":3123,"date":3124,"published":12,"tags":3125,"author":11,"cover":3126,"video":11,"excerpt":11,"shortDesc":3121},"building-angular-spring-boot","2017-06-23T08:00:27-04:00",[2992,1509],".\u002Fimac-apple-mockup-app-38544-760x505.jpeg",{"minutes":749,"text":750},{"_id":3129,"path":3130,"title":3131,"description":3131,"meta":3132,"readingTime":3137},"blog\u002Fblog\u002F2017\u002F06\u002F21\u002Fspring-boot-properties-setting-locale.md","\u002Fblog\u002F2017\u002F06\u002F21\u002Fspring-boot-properties-setting-locale","Spring Boot Properties: Setting the locale",{"slug":3133,"date":3134,"published":12,"tags":3135,"author":11,"cover":3136,"video":11,"excerpt":11,"shortDesc":3131},"spring-boot-properties-setting-locale","2017-06-21T08:19:09-04:00",[1509],".\u002Fandre-benz-256762-760x507.jpg",{"minutes":1866,"text":1867},{"_id":3139,"path":3140,"title":3141,"description":3141,"meta":3142,"readingTime":3147},"blog\u002Fblog\u002F2017\u002F06\u002F19\u002Fspring-boot-2-0-m2-now-available.md","\u002Fblog\u002F2017\u002F06\u002F19\u002Fspring-boot-2-0-m2-now-available","Spring Boot 2.0 M2 Now Available",{"slug":3143,"date":3144,"published":12,"tags":3145,"author":11,"cover":3146,"video":11,"excerpt":11,"shortDesc":3141},"spring-boot-2-0-m2-now-available","2017-06-19T08:30:53-04:00",[1509],".\u002Fpexels-photo-92904-760x507.jpeg",{"minutes":239,"text":2302},{"_id":3149,"path":3150,"title":3151,"description":3151,"meta":3152,"readingTime":3158},"blog\u002Fblog\u002F2017\u002F06\u002F16\u002Fmigrating-grails-2-x-applications-grails-3-x.md","\u002Fblog\u002F2017\u002F06\u002F16\u002Fmigrating-grails-2-x-applications-grails-3-x","Migrating Grails 2.x Applications to Grails 3.x",{"slug":3153,"date":3154,"published":12,"tags":3155,"author":11,"cover":3157,"video":11,"excerpt":11,"shortDesc":3151},"migrating-grails-2-x-applications-grails-3-x","2017-06-16T08:53:25-04:00",[3156],"grails",".\u002Fpexels-photo-436784-760x507.jpeg",{"minutes":845,"text":846},{"_id":3160,"path":3161,"title":3162,"description":3162,"meta":3163,"readingTime":3167},"blog\u002Fblog\u002F2017\u002F06\u002F14\u002Fspring-boot-defining-requestmapping-handler-methods.md","\u002Fblog\u002F2017\u002F06\u002F14\u002Fspring-boot-defining-requestmapping-handler-methods","Spring Boot Defining @RequestMapping handler methods",{"slug":3164,"date":3165,"published":12,"tags":3166,"author":11,"cover":3043,"video":11,"excerpt":11,"shortDesc":3162},"spring-boot-defining-requestmapping-handler-methods","2017-06-14T08:36:35-04:00",[1509],{"minutes":697,"text":698},{"_id":3169,"path":3170,"title":3171,"description":3171,"meta":3172,"readingTime":3177},"blog\u002Fblog\u002F2017\u002F06\u002F12\u002Fbootstrapping-angular-application.md","\u002Fblog\u002F2017\u002F06\u002F12\u002Fbootstrapping-angular-application","Bootstrapping your Angular Application",{"slug":3173,"date":3174,"published":12,"tags":3175,"author":11,"cover":3176,"video":11,"excerpt":11,"shortDesc":3171},"bootstrapping-angular-application","2017-06-12T11:40:51-04:00",[2992],".\u002Fpexels-photo-177598-760x506.jpeg",{"minutes":620,"text":621},{"_id":3179,"path":3180,"title":3181,"description":3181,"meta":3182,"readingTime":3187},"blog\u002Fblog\u002F2017\u002F06\u002F07\u002Fangular-forms-clear-input-field.md","\u002Fblog\u002F2017\u002F06\u002F07\u002Fangular-forms-clear-input-field","Angular Forms: How to clear an input field",{"slug":3183,"date":3184,"published":12,"tags":3185,"author":11,"cover":3186,"video":11,"excerpt":11,"shortDesc":3181},"angular-forms-clear-input-field","2017-06-07T09:50:47-04:00",[2992],".\u002Fangular-forms.png",{"minutes":845,"text":846},{"_id":3189,"path":3190,"title":3191,"description":3191,"meta":3192,"readingTime":3197},"blog\u002Fblog\u002F2017\u002F06\u002F05\u002Fgetting-started-angular-cli.md","\u002Fblog\u002F2017\u002F06\u002F05\u002Fgetting-started-angular-cli","Getting Started with the Angular CLI",{"slug":3193,"date":3194,"published":12,"tags":3195,"author":11,"cover":3196,"video":11,"excerpt":11,"shortDesc":3191},"getting-started-angular-cli","2017-06-05T10:34:50-04:00",[2992],".\u002F2017-06-05_09-34-25-760x226.png",{"minutes":1406,"text":1407},{"_id":3199,"path":3200,"title":3201,"description":3201,"meta":3202,"readingTime":3208},"blog\u002Fblog\u002F2017\u002F05\u002F31\u002Fspring-boot-1-question-students-asking-right-now.md","\u002Fblog\u002F2017\u002F05\u002F31\u002Fspring-boot-1-question-students-asking-right-now","Spring Boot: The #1 question my students are asking right now",{"slug":3203,"date":3204,"published":12,"tags":3205,"author":11,"cover":3207,"video":11,"excerpt":11,"shortDesc":3201},"spring-boot-1-question-students-asking-right-now","2017-05-31T08:48:35-04:00",[3206],"sql",".\u002Fpexels-photo-92028-760x599.jpeg",{"minutes":845,"text":846},{"_id":3210,"path":3211,"title":3212,"description":3212,"meta":3213,"readingTime":3219},"blog\u002Fblog\u002F2017\u002F05\u002F26\u002Fso-you-want-to-create-an-online-course.md","\u002Fblog\u002F2017\u002F05\u002F26\u002Fso-you-want-to-create-an-online-course","So you want to create an online course?",{"slug":3214,"date":3215,"published":12,"tags":3216,"author":11,"cover":3218,"video":11,"excerpt":11,"shortDesc":3212},"so-you-want-to-create-an-online-course","2017-05-26T12:34:08-04:00",[3217],"course",".\u002Fcarl-heyerdahl-181868-1-760x507.jpg",{"minutes":1498,"text":1499},{"_id":3221,"path":3222,"title":3223,"description":3223,"meta":3224,"readingTime":3229},"blog\u002Fblog\u002F2017\u002F05\u002F24\u002Fcontributing-groovy-website.md","\u002Fblog\u002F2017\u002F05\u002F24\u002Fcontributing-groovy-website","How you can contribute to the Groovy Website",{"slug":3225,"date":3226,"published":12,"tags":3227,"author":11,"cover":3228,"video":11,"excerpt":11,"shortDesc":3223},"contributing-groovy-website","2017-05-24T08:12:01-04:00",[2960],".\u002F2017-05-23_19-50-54-760x462.png",{"minutes":859,"text":860},{"_id":3231,"path":3232,"title":3233,"description":3233,"meta":3234,"readingTime":3238},"blog\u002Fblog\u002F2017\u002F05\u002F22\u002Fchecking-upgrading-jhipster-version.md","\u002Fblog\u002F2017\u002F05\u002F22\u002Fchecking-upgrading-jhipster-version","How to check your version and upgrade JHipster",{"slug":3235,"date":3236,"published":12,"tags":3237,"author":11,"cover":3013,"video":11,"excerpt":11,"shortDesc":3233},"checking-upgrading-jhipster-version","2017-05-22T09:00:26-04:00",[2992,1509],{"minutes":239,"text":2302},{"_id":3240,"path":3241,"title":3242,"description":3242,"meta":3243,"readingTime":3247},"blog\u002Fblog\u002F2017\u002F05\u002F19\u002Fspring-boot-2-first-release.md","\u002Fblog\u002F2017\u002F05\u002F19\u002Fspring-boot-2-first-release","The first release of Spring Boot 2.0 is now available!",{"slug":3244,"date":3245,"published":12,"tags":3246,"author":11,"cover":3146,"video":11,"excerpt":11,"shortDesc":3242},"spring-boot-2-first-release","2017-05-19T10:15:39-04:00",[1509],{"minutes":845,"text":846},{"_id":3249,"path":3250,"title":3251,"description":3252,"meta":3253,"readingTime":3258},"blog\u002Fblog\u002F2017\u002F05\u002F17\u002Fspring-component-vs-bean.md","\u002Fblog\u002F2017\u002F05\u002F17\u002Fspring-component-vs-bean","Spring @Component vs @Bean: What's the Difference?","@Component vs @Bean in Spring: @Component marks classes you own for classpath scanning, @Bean builds beans from methods. Learn when to use each, with examples.",{"slug":3254,"date":3255,"published":12,"tags":3256,"author":11,"cover":3257,"video":11,"excerpt":11,"shortDesc":3252},"spring-component-vs-bean","2017-05-17T09:00:06-04:00",[1201,14],".\u002Fbean-vs-component.png",{"minutes":859,"text":860},{"_id":3260,"path":3261,"title":3262,"description":3263,"meta":3264,"readingTime":3269},"blog\u002Fblog\u002F2017\u002F05\u002F15\u002Fgetting-started-spring-boot-actuator.md","\u002Fblog\u002F2017\u002F05\u002F15\u002Fgetting-started-spring-boot-actuator","Getting Started with Spring Boot Actuator Endpoints","Getting started with Spring Boot Actuator: add the dependency, explore the built-in production-ready endpoints for health and metrics, and secure them.",{"slug":3265,"date":3266,"published":12,"tags":3267,"author":11,"cover":3268,"video":11,"excerpt":11,"shortDesc":3263},"getting-started-spring-boot-actuator","2017-05-15T08:00:22-04:00",[1509],".\u002Fpexels-photo-169573-760x507.jpeg",{"minutes":749,"text":750},{"_id":3271,"path":3272,"title":3273,"description":3273,"meta":3274,"readingTime":3279},"blog\u002Fblog\u002F2017\u002F05\u002F12\u002F6-courses-itunes-u.md","\u002Fblog\u002F2017\u002F05\u002F12\u002F6-courses-itunes-u","6 Courses on iTunes U that can upgrade your Software Development Career",{"slug":3275,"date":3276,"published":12,"tags":3277,"author":11,"cover":3278,"video":11,"excerpt":11,"shortDesc":3273},"6-courses-itunes-u","2017-05-12T08:00:52-04:00",[2981],".\u002F2017-05-11_16-07-03-760x399.png",{"minutes":239,"text":2302},{"_id":3281,"path":3282,"title":3283,"description":3283,"meta":3284,"readingTime":3288},"blog\u002Fblog\u002F2017\u002F05\u002F10\u002Fspring-boot-moving-tomcat-jetty.md","\u002Fblog\u002F2017\u002F05\u002F10\u002Fspring-boot-moving-tomcat-jetty","Moving from Tomcat to Jetty in your Spring Boot Application",{"slug":3285,"date":3286,"published":12,"tags":3287,"author":11,"cover":3116,"video":11,"excerpt":11,"shortDesc":3283},"spring-boot-moving-tomcat-jetty","2017-05-10T09:00:06-04:00",[1509],{"minutes":749,"text":750},{"_id":3290,"path":3291,"title":3292,"description":3292,"meta":3293,"readingTime":3298},"blog\u002Fblog\u002F2017\u002F05\u002F08\u002Fenable-new-youtube-dark-theme-right-now.md","\u002Fblog\u002F2017\u002F05\u002F08\u002Fenable-new-youtube-dark-theme-right-now","Enable the new YouTube Dark Theme right now",{"slug":3294,"date":3295,"published":12,"tags":3296,"author":11,"cover":3297,"video":11,"excerpt":11,"shortDesc":3292},"enable-new-youtube-dark-theme-right-now","2017-05-08T08:00:50-04:00",[487],".\u002F2017-05-04_23-05-38-760x367.png",{"minutes":209,"text":2505},{"_id":3300,"path":3301,"title":3302,"description":3302,"meta":3303,"readingTime":3308},"blog\u002Fblog\u002F2017\u002F05\u002F05\u002Fmake-weakness-strength.md","\u002Fblog\u002F2017\u002F05\u002F05\u002Fmake-weakness-strength","How to Make your weakness your strength",{"slug":3304,"date":3305,"published":12,"tags":3306,"author":11,"cover":3307,"video":11,"excerpt":11,"shortDesc":3302},"make-weakness-strength","2017-05-05T08:00:15-04:00",[2981],".\u002Flucas-rosas-98304-760x507.jpg",{"minutes":790,"text":791},{"_id":3310,"path":3311,"title":3312,"description":3312,"meta":3313,"readingTime":3318},"blog\u002Fblog\u002F2017\u002F05\u002F03\u002Fspring-angular-applications.md","\u002Fblog\u002F2017\u002F05\u002F03\u002Fspring-angular-applications","How to start writing Angular & Spring Applications",{"slug":3314,"date":3315,"published":12,"tags":3316,"author":11,"cover":3317,"video":11,"excerpt":11,"shortDesc":3312},"spring-angular-applications","2017-05-03T09:00:37-04:00",[2992,1509],".\u002Fcarl-heyerdahl-181868-760x507.jpg",{"minutes":620,"text":621},{"_id":3320,"path":3321,"title":3322,"description":3323,"meta":3324,"readingTime":3329},"blog\u002Fblog\u002F2017\u002F05\u002F01\u002Fadd-validation-spring-entities.md","\u002Fblog\u002F2017\u002F05\u002F01\u002Fadd-validation-spring-entities","How to Add Validation to Your Spring Boot Entities","Learn how to add Bean Validation to your Spring Boot entities with @NotNull and JPA, then build a custom constraint validator with ConstraintValidator.",{"slug":3325,"date":3326,"published":12,"tags":3327,"author":11,"cover":3328,"video":11,"excerpt":11,"shortDesc":3323},"add-validation-spring-entities","2017-05-01T16:37:13-04:00",[1509],".\u002Fluis-llerena-14779-760x507.jpg",{"minutes":830,"text":831},{"_id":3331,"path":3332,"title":3333,"description":3333,"meta":3334,"readingTime":3339},"blog\u002Fblog\u002F2017\u002F04\u002F28\u002Fevery-developer-start-blog-right-now.md","\u002Fblog\u002F2017\u002F04\u002F28\u002Fevery-developer-start-blog-right-now","Why every developer should start a blog right now!",{"slug":3335,"date":3336,"published":12,"tags":3337,"author":11,"cover":3338,"video":11,"excerpt":11,"shortDesc":3333},"every-developer-start-blog-right-now","2017-04-28T09:15:56-04:00",[2668],".\u002Fken-tomita-239357-760x507.jpg",{"minutes":1406,"text":1407},{"_id":3341,"path":3342,"title":3343,"description":3343,"meta":3344,"readingTime":3349},"blog\u002Fblog\u002F2017\u002F04\u002F26\u002Fwhat-is-going-wrong-on-the-spring-boot-view-layer.md","\u002Fblog\u002F2017\u002F04\u002F26\u002Fwhat-is-going-wrong-on-the-spring-boot-view-layer","What is going wrong on the Spring Boot View Layer?",{"slug":3345,"date":3346,"published":12,"tags":3347,"author":11,"cover":3348,"video":11,"excerpt":11,"shortDesc":3343},"what-is-going-wrong-on-the-spring-boot-view-layer","2017-04-26T09:02:28-04:00",[1509],".\u002Fview_layer-760x760.png",{"minutes":790,"text":791},{"_id":3351,"path":3352,"title":3353,"description":3353,"meta":3354,"readingTime":3359},"blog\u002Fblog\u002F2017\u002F04\u002F24\u002Fspring-boot-2-0-roadmap.md","\u002Fblog\u002F2017\u002F04\u002F24\u002Fspring-boot-2-0-roadmap","Spring Boot 2.0 Roadmap",{"slug":3355,"date":3356,"published":12,"tags":3357,"author":11,"cover":3358,"video":11,"excerpt":11,"shortDesc":3353},"spring-boot-2-0-roadmap","2017-04-24T08:00:05-04:00",[1509],".\u002Fannie-spratt-161511-760x1140.jpg",{"minutes":1406,"text":1407},{"_id":3361,"path":3362,"title":3363,"description":3363,"meta":3364,"readingTime":3370},"blog\u002Fblog\u002F2017\u002F04\u002F21\u002Fhow-do-you-define-success.md","\u002Fblog\u002F2017\u002F04\u002F21\u002Fhow-do-you-define-success","How do you Define Success as a Software Developer",{"slug":3365,"date":3366,"published":12,"tags":3367,"author":11,"cover":3369,"video":11,"excerpt":11,"shortDesc":3363},"how-do-you-define-success","2017-04-21T10:00:07-04:00",[3368],"programming",".\u002Fwilliam-stitt-224301-760x1140.jpg",{"minutes":1406,"text":1407},{"_id":3372,"path":3373,"title":3374,"description":3374,"meta":3375,"readingTime":3379},"blog\u002Fblog\u002F2017\u002F04\u002F19\u002Fwhat-is-jhipster.md","\u002Fblog\u002F2017\u002F04\u002F19\u002Fwhat-is-jhipster","What is JHipster & Why you need to start using it today!",{"slug":3376,"date":3377,"published":12,"tags":3378,"author":11,"cover":3013,"video":11,"excerpt":11,"shortDesc":3374},"what-is-jhipster","2017-04-19T09:38:31-04:00",[677,1509],{"minutes":254,"text":2127},{"_id":3381,"path":3382,"title":3383,"description":3383,"meta":3384,"readingTime":3389},"blog\u002Fblog\u002F2017\u002F04\u002F17\u002Fjava-9.md","\u002Fblog\u002F2017\u002F04\u002F17\u002Fjava-9","Getting Started with Java 9",{"slug":3385,"date":3386,"published":12,"tags":3387,"author":11,"cover":3388,"video":11,"excerpt":11,"shortDesc":3383},"java-9","2017-04-17T11:05:58-04:00",[677],".\u002FJava9-760x428.png",{"minutes":254,"text":2127},{"_id":3391,"path":3392,"title":3393,"description":3394,"meta":3395,"readingTime":3400},"blog\u002Fblog\u002F2017\u002F04\u002F10\u002Finserting-a-groovy-date-into-a-time-stamp-column.md","\u002Fblog\u002F2017\u002F04\u002F10\u002Finserting-a-groovy-date-into-a-time-stamp-column","Inserting a Groovy Date into a Time Stamp Column","Inserting a Groovy Date into a Timestamp Column",{"slug":3396,"date":3397,"published":12,"tags":3398,"author":11,"cover":3399,"video":11,"excerpt":11,"shortDesc":3394},"inserting-a-groovy-date-into-a-time-stamp-column","2017-04-10T08:00:06-04:00",[2960],".\u002FGroovyDate-760x428.png",{"minutes":254,"text":2127},{"_id":3402,"path":3403,"title":3404,"description":3405,"meta":3406,"readingTime":3412},"blog\u002Fblog\u002F2017\u002F04\u002F07\u002Fspring-boot-command-line-runner.md","\u002Fblog\u002F2017\u002F04\u002F07\u002Fspring-boot-command-line-runner","Spring Boot CommandLineRunner Example","Learn how to use the Spring Boot CommandLineRunner interface to run code at application startup, load initial data, and order multiple runners in Java.",{"slug":3407,"date":3408,"published":12,"tags":3409,"author":11,"cover":3410,"video":3411,"excerpt":11,"shortDesc":3405},"spring-boot-command-line-runner","2017-04-07T08:00:43-04:00",[1509],".\u002Fspring-boot-command-line-runner-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FgBN8x4yN5Ks",{"minutes":873,"text":874},{"_id":3414,"path":3415,"title":3416,"description":3417,"meta":3418,"readingTime":3423},"blog\u002Fblog\u002F2017\u002F04\u002F05\u002Fjava-equals.md","\u002Fblog\u002F2017\u002F04\u002F05\u002Fjava-equals","Java: What is the difference between equals and ==","Understand the difference between == and .equals() in Java. Learn why == compares references while .equals() compares String values, and how to fix it.",{"slug":3419,"date":3420,"published":12,"tags":3421,"author":11,"cover":3422,"video":11,"excerpt":11,"shortDesc":3417},"java-equals","2017-04-05T08:00:50-04:00",[677],".\u002Fjava_equals-760x428.png",{"minutes":845,"text":846},{"_id":3425,"path":3426,"title":3427,"description":3427,"meta":3428,"readingTime":3433},"blog\u002Fblog\u002F2017\u002F04\u002F03\u002F2000-subscribers-youtube.md","\u002Fblog\u002F2017\u002F04\u002F03\u002F2000-subscribers-youtube","2,000 Subscribers on YouTube!!",{"slug":3429,"date":3430,"published":12,"tags":3431,"author":11,"cover":3432,"video":11,"excerpt":11,"shortDesc":3427},"2000-subscribers-youtube","2017-04-03T08:30:34-04:00",[487],".\u002F200-subscribers.jpg",{"minutes":209,"text":2505},{"_id":3435,"path":3436,"title":3437,"description":3438,"meta":3439,"readingTime":3444},"blog\u002Fblog\u002F2017\u002F03\u002F31\u002Fusing-project-lombok-spring-boot.md","\u002Fblog\u002F2017\u002F03\u002F31\u002Fusing-project-lombok-spring-boot","Using Project Lombok in your Spring Boot Project","Learn how to use Project Lombok in Spring Boot to reduce boilerplate code — the @Data annotation generates getters, setters, toString, equals & hashCode.",{"slug":3440,"date":3441,"published":12,"tags":3442,"author":11,"cover":3443,"video":11,"excerpt":11,"shortDesc":3438},"using-project-lombok-spring-boot","2017-03-31T08:00:38-04:00",[677,1509],".\u002F2350-760x507.jpg",{"minutes":636,"text":637},{"_id":3446,"path":3447,"title":3448,"description":3449,"meta":3450,"readingTime":3455},"blog\u002Fblog\u002F2017\u002F03\u002F27\u002Fspring-stereotype-annotations.md","\u002Fblog\u002F2017\u002F03\u002F27\u002Fspring-stereotype-annotations","Spring Stereotype Annotations","Learn Spring stereotype annotations: @Component, @Service, @Repository, and @Controller, how component scanning registers them as beans, plus an AOP demo.",{"slug":3451,"date":3452,"published":12,"tags":3453,"author":11,"cover":3454,"video":11,"excerpt":11,"shortDesc":3449},"spring-stereotype-annotations","2017-03-27T08:00:15-04:00",[1509],".\u002Fstereotype_annotations.png",{"minutes":830,"text":831},{"_id":3457,"path":3458,"title":3459,"description":3459,"meta":3460,"readingTime":3465},"blog\u002Fblog\u002F2017\u002F03\u002F24\u002Fspring-boot-convention-based-error-pages.md","\u002Fblog\u002F2017\u002F03\u002F24\u002Fspring-boot-convention-based-error-pages","Spring Boot Convention Based Error Pages",{"slug":3461,"date":3462,"published":12,"tags":3463,"author":11,"cover":3464,"video":11,"excerpt":11,"shortDesc":3459},"spring-boot-convention-based-error-pages","2017-03-24T08:00:33-04:00",[1509],".\u002Fcustom-error-cover.jpg",{"minutes":749,"text":750},{"_id":3467,"path":3468,"title":3469,"description":3469,"meta":3470,"readingTime":3475},"blog\u002Fblog\u002F2017\u002F03\u002F22\u002Fspring-boot-entity-scan.md","\u002Fblog\u002F2017\u002F03\u002F22\u002Fspring-boot-entity-scan","Spring Boot Entity Scan",{"slug":3471,"date":3472,"published":12,"tags":3473,"author":11,"cover":3474,"video":11,"excerpt":11,"shortDesc":3469},"spring-boot-entity-scan","2017-03-22T08:00:44-04:00",[1509],".\u002Fentity-scan.jpg",{"minutes":697,"text":698},{"_id":3477,"path":3478,"title":3479,"description":3480,"meta":3481,"readingTime":3487},"blog\u002Fblog\u002F2016\u002F10\u002F04\u002Fmade-20000-sleep.md","\u002Fblog\u002F2016\u002F10\u002F04\u002Fmade-20000-sleep","How I Made $20,000 in my Sleep","In this article I hope to inspire you to take action now!",{"slug":3482,"date":3483,"published":12,"tags":3484,"author":11,"cover":3486,"video":11,"excerpt":11,"shortDesc":3480},"made-20000-sleep","2016-10-04T20:26:59-04:00",[3485],"udemy",".\u002Fudemy_milestone_20k_2-1024x688.png",{"minutes":1406,"text":1407},{"_id":3489,"path":3490,"title":3491,"description":3492,"meta":3493,"readingTime":3498},"blog\u002Fblog\u002F2016\u002F09\u002F20\u002Ftech-elevator-meetup-summary.md","\u002Fblog\u002F2016\u002F09\u002F20\u002Ftech-elevator-meetup-summary","Tech Elevator Meetup Summary","A summary of the panel I was asked to be on at Tech Elevator.",{"slug":3494,"date":3495,"published":12,"tags":3496,"author":11,"cover":3497,"video":11,"excerpt":11,"shortDesc":3492},"tech-elevator-meetup-summary","2016-09-20T08:00:53-04:00",[3368],".\u002Fhighres_454339592.jpeg",{"minutes":223,"text":2288},{"_id":3500,"path":3501,"title":3502,"description":3503,"meta":3504,"readingTime":3509},"blog\u002Fblog\u002F2016\u002F01\u002F14\u002Fspring-mvc-get-controller-method-name.md","\u002Fblog\u002F2016\u002F01\u002F14\u002Fspring-mvc-get-controller-method-name","Spring MVC Get Controller & Method Name","How to get the current controller and method name Spring MVC Get Controller & Method Name",{"slug":3505,"date":3506,"published":12,"tags":3507,"author":11,"cover":3508,"video":11,"excerpt":11,"shortDesc":3503},"spring-mvc-get-controller-method-name","2016-01-14T16:27:22-05:00",[677,1509],".\u002Fcontroller-cover.jpg",{"minutes":683,"text":684},{"_id":3511,"path":3512,"title":3513,"description":3514,"meta":3515,"readingTime":3520},"blog\u002Fblog\u002F2016\u002F01\u002F13\u002Fsending-async-emails-in-spring.md","\u002Fblog\u002F2016\u002F01\u002F13\u002Fsending-async-emails-in-spring","Sending Async Emails in Spring","In this article I will walk you through how to send email asynchronously in Spring Boot.",{"slug":3516,"date":3517,"published":12,"tags":3518,"author":11,"cover":3519,"video":11,"excerpt":11,"shortDesc":3514},"sending-async-emails-in-spring","2016-01-13T10:30:20-05:00",[677,1509],".\u002Femail-cover.jpg",{"minutes":790,"text":791},{"_id":3522,"path":3523,"title":3524,"description":3524,"meta":3525,"readingTime":3530},"blog\u002Fblog\u002F2015\u002F11\u002F25\u002Fusing-gorm-in-spring-boot.md","\u002Fblog\u002F2015\u002F11\u002F25\u002Fusing-gorm-in-spring-boot","Using GORM in Spring Boot",{"slug":3526,"date":3527,"published":12,"tags":3528,"author":11,"cover":3529,"video":11,"excerpt":11,"shortDesc":3524},"using-gorm-in-spring-boot","2015-11-25T11:43:13-05:00",[2960,1509,677],".\u002Fadult-back-view-data-1181345.jpg",{"minutes":1166,"text":1167},{"_id":3532,"path":3533,"title":3534,"description":3534,"meta":3535,"readingTime":3540},"blog\u002Fblog\u002F2015\u002F10\u002F23\u002Fspring-boot-application-annotation.md","\u002Fblog\u002F2015\u002F10\u002F23\u002Fspring-boot-application-annotation","Spring Boot Application Annotation",{"slug":3536,"date":3537,"published":12,"tags":3538,"author":11,"cover":3539,"video":11,"excerpt":11,"shortDesc":3534},"spring-boot-application-annotation","2015-10-23T09:08:37-04:00",[677,1509],".\u002Faccess-code-connection-1181467.jpg",{"minutes":620,"text":621},{"_id":3542,"path":3543,"title":3544,"description":3545,"meta":3546,"readingTime":3551},"blog\u002Fblog\u002F2015\u002F04\u002F24\u002Fready-player-one-review.md","\u002Fblog\u002F2015\u002F04\u002F24\u002Fready-player-one-review","Ready Player One Review","A quick review of the book Ready Player One",{"slug":3547,"date":3548,"published":12,"tags":3549,"author":11,"cover":3550,"video":11,"excerpt":11,"shortDesc":3545},"ready-player-one-review","2015-04-24T17:00:00.000Z",[440],"bookcase-books-bookshelves-159711.jpg",{"minutes":1866,"text":1867},{"_id":3553,"path":3554,"title":3555,"description":3556,"meta":3557,"readingTime":3562},"blog\u002Fblog\u002F2015\u002F02\u002F05\u002Fsql-server-exception-statement-not-return-result-set.md","\u002Fblog\u002F2015\u002F02\u002F05\u002Fsql-server-exception-statement-not-return-result-set","SQL Server Exception - The Statement Did Not Return A Result Set","Using Stored Procedures in a Grails Application with Groovy",{"slug":3558,"date":3559,"published":12,"tags":3560,"author":11,"cover":3561,"video":11,"excerpt":11,"shortDesc":3556},"sql-server-exception-statement-not-return-result-set","2015-02-05T11:48:18-05:00",[2960,3206],".\u002Fdata-cover.jpg",{"minutes":1866,"text":1867},{"_id":3564,"path":3565,"title":3566,"description":3567,"meta":3568,"readingTime":3572},"blog\u002Fblog\u002F2014\u002F04\u002F08\u002Fgravatars-on-a-grails-application.md","\u002Fblog\u002F2014\u002F04\u002F08\u002Fgravatars-on-a-grails-application","Gravatars on a Grails Application","Gravatars in a Grails Application",{"slug":3569,"date":3570,"published":12,"tags":3571,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3567},"gravatars-on-a-grails-application","2014-04-08T14:04:00-04:00",[3156,2960],{"minutes":1406,"text":1407},{"_id":3574,"path":3575,"title":3576,"description":3577,"meta":3578,"readingTime":3582},"blog\u002Fblog\u002F2014\u002F03\u002F31\u002Fgrails-generating-links-in-your-domain-class.md","\u002Fblog\u002F2014\u002F03\u002F31\u002Fgrails-generating-links-in-your-domain-class","Grails: Generating links in your domain class","Grails: Generating Links in your Domain Class",{"slug":3579,"date":3580,"published":12,"tags":3581,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3577},"grails-generating-links-in-your-domain-class","2014-03-31T09:03:00-04:00",[3156],{"minutes":749,"text":750},{"_id":3584,"path":3585,"title":3586,"description":3587,"meta":3588,"readingTime":3592},"blog\u002Fblog\u002F2014\u002F02\u002F25\u002Fgrails-spring-security-plugin-logout-postonly-setting.md","\u002Fblog\u002F2014\u002F02\u002F25\u002Fgrails-spring-security-plugin-logout-postonly-setting","Grails Spring Security Plugin -  Logout postOnly setting","Grails Spring Security Plugin - Logout PostOnly Setting",{"slug":3589,"date":3590,"published":12,"tags":3591,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3587},"grails-spring-security-plugin-logout-postonly-setting","2014-02-25T13:02:00-05:00",[3156],{"minutes":239,"text":2302},{"_id":3594,"path":3595,"title":3596,"description":3596,"meta":3597,"readingTime":3603},"blog\u002Fblog\u002F2014\u002F02\u002F23\u002Fcreating-and-testing-your-first-grails-tag-library.md","\u002Fblog\u002F2014\u002F02\u002F23\u002Fcreating-and-testing-your-first-grails-tag-library","Creating and testing your first Grails Tag Library",{"slug":3598,"date":3599,"published":12,"tags":3600,"author":11,"cover":3601,"video":3602,"excerpt":11,"shortDesc":3596},"creating-and-testing-your-first-grails-tag-library","2014-02-23T07:02:00-05",[3156,2960],".\u002Ftesting-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvZ_7FfML9Xg",{"minutes":845,"text":846},{"_id":3605,"path":3606,"title":3607,"description":3607,"meta":3608,"readingTime":3612},"blog\u002Fblog\u002F2013\u002F08\u002F27\u002Fgrails-mysql-boolean-gotcha.md","\u002Fblog\u002F2013\u002F08\u002F27\u002Fgrails-mysql-boolean-gotcha","Grails MySQL Boolean Gotcha",{"slug":3609,"date":3610,"published":12,"tags":3611,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3607},"grails-mysql-boolean-gotcha","2013-08-27T18:08:00-04:00",[3156,2960],{"minutes":1406,"text":1407},{"_id":3614,"path":3615,"title":3616,"description":3616,"meta":3617,"readingTime":3621},"blog\u002Fblog\u002F2013\u002F08\u002F27\u002Fgrails-interactive-mode-use-it.md","\u002Fblog\u002F2013\u002F08\u002F27\u002Fgrails-interactive-mode-use-it","Grails Interactive Mode - USE IT",{"slug":3618,"date":3619,"published":12,"tags":3620,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3616},"grails-interactive-mode-use-it","2013-08-27T15:08:00-04:00",[3156],{"minutes":223,"text":2288},{"_id":3623,"path":3624,"title":3625,"description":3625,"meta":3626,"readingTime":3630},"blog\u002Fblog\u002F2013\u002F08\u002F23\u002Fintellij-spring-bean-injection-notification.md","\u002Fblog\u002F2013\u002F08\u002F23\u002Fintellij-spring-bean-injection-notification","IntelliJ Spring Bean Injection Notification",{"slug":3627,"date":3628,"published":12,"tags":3629,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3625},"intellij-spring-bean-injection-notification","2013-08-23T08:08:00-04:00",[3156,2960],{"minutes":209,"text":2505},{"_id":3632,"path":3633,"title":3634,"description":3634,"meta":3635,"readingTime":3639},"blog\u002Fblog\u002F2013\u002F08\u002F22\u002Fgroovy-ternary-operator.md","\u002Fblog\u002F2013\u002F08\u002F22\u002Fgroovy-ternary-operator","Groovy Ternary Operator",{"slug":3636,"date":3637,"published":12,"tags":3638,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3634},"groovy-ternary-operator","2013-08-22T13:08:00-04:00",[2960],{"minutes":254,"text":2127},{"_id":3641,"path":3642,"title":3643,"description":3643,"meta":3644,"readingTime":3648},"blog\u002Fblog\u002F2013\u002F08\u002F21\u002Fgroovy-collections-vs-my-current-thought-process.md","\u002Fblog\u002F2013\u002F08\u002F21\u002Fgroovy-collections-vs-my-current-thought-process","Groovy collections vs My Current Thought Process",{"slug":3645,"date":3646,"published":12,"tags":3647,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3643},"groovy-collections-vs-my-current-thought-process","2013-08-21T16:08:00-04:00",[3156,2960],{"minutes":790,"text":791},{"_id":3650,"path":3651,"title":3652,"description":3652,"meta":3653,"readingTime":3657},"blog\u002Fblog\u002F2013\u002F08\u002F21\u002Fwriting-sql-in-a-grails-application.md","\u002Fblog\u002F2013\u002F08\u002F21\u002Fwriting-sql-in-a-grails-application","Writing SQL in a Grails Application",{"slug":3654,"date":3655,"published":12,"tags":3656,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3652},"writing-sql-in-a-grails-application","2013-08-21T12:08:00-04:00",[3156],{"minutes":254,"text":2127},{"_id":3659,"path":3660,"title":3661,"description":3661,"meta":3662,"readingTime":3666},"blog\u002Fblog\u002F2013\u002F08\u002F20\u002Fgrails-hibernate-logging.md","\u002Fblog\u002F2013\u002F08\u002F20\u002Fgrails-hibernate-logging","Grails Hibernate Logging",{"slug":3663,"date":3664,"published":12,"tags":3665,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3661},"grails-hibernate-logging","2013-08-20T17:08:00-04:00",[3156],{"minutes":209,"text":2505},{"_id":3668,"path":3669,"title":3670,"description":3670,"meta":3671,"readingTime":3675},"blog\u002Fblog\u002F2013\u002F08\u002F20\u002Fgroovy-primitive-data-types-vs-classes.md","\u002Fblog\u002F2013\u002F08\u002F20\u002Fgroovy-primitive-data-types-vs-classes","Groovy Primitive Data Types vs Objects",{"slug":3672,"date":3673,"published":12,"tags":3674,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3670},"groovy-primitive-data-types-vs-classes","2013-08-20T12:08:00-04:00",[3156,2960],{"minutes":1866,"text":1867},{"_id":3677,"path":3678,"title":3679,"description":3679,"meta":3680,"readingTime":3684},"blog\u002Fblog\u002F2013\u002F08\u002F20\u002Fgroovys-null-safe-operator.md","\u002Fblog\u002F2013\u002F08\u002F20\u002Fgroovys-null-safe-operator","Groovy's null safe operator",{"slug":3681,"date":3682,"published":12,"tags":3683,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3679},"groovys-null-safe-operator","2013-08-20T06:08:00-04:00",[3156,2960],{"minutes":239,"text":2302},{"_id":3686,"path":3687,"title":3688,"description":3689,"meta":3690,"readingTime":3695},"blog\u002Fblog\u002F2010\u002F08\u002F04\u002Fcreate-sql-insert-statements-from-a-spreadsheet.md","\u002Fblog\u002F2010\u002F08\u002F04\u002Fcreate-sql-insert-statements-from-a-spreadsheet","Create SQL Insert Statements from a Spreadsheet","In this article, I will show you how to create SQL insert statements from a spreadsheet",{"slug":3691,"date":3692,"published":12,"tags":3693,"author":16,"cover":3694,"video":11,"excerpt":11,"shortDesc":3689},"create-sql-insert-statements-from-a-spreadsheet","2010-08-04T15:08:00.000Z",[3206],".\u002Fsql-cover.png",{"minutes":239,"text":2302}]