[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"blog-post-spring-boot-3-2":3,"blog-posts-all":1931},{"_id":4,"path":5,"title":6,"description":7,"meta":8,"body":17},"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":9,"date":10,"updatedOn":11,"published":12,"tags":13,"author":15,"cover":16,"video":11,"excerpt":11,"shortDesc":7},"spring-boot-3-2","2023-12-20T17:00:00.000Z",null,true,[14],"Spring Boot","Dan Vega","whats-new.jpeg",{"type":18,"value":19,"toc":1906},"minimark",[20,32,64,69,72,75,78,81,85,88,92,95,103,110,113,116,122,126,129,135,138,147,151,160,164,168,171,175,178,181,187,190,196,199,203,206,209,213,222,225,231,235,246,249,252,255,258,265,770,779,782,786,789,792,795,798,802,805,808,811,820,823,826,829,899,902,908,915,1150,1158,1161,1165,1168,1171,1178,1388,1391,1400,1404,1407,1410,1413,1418,1422,1425,1442,1449,1712,1716,1745,1802,1808,1892,1896,1899,1902],[21,22,23,24,31],"p",{},"This article highlights some of the new features in the latest releases of Spring Framework 6.1 and Spring Boot 3.2. The new release includes support for Java 21, so if you want to leverage all the new features in the JDK, you should consider upgrading. For a comprehensive overview of the changes, new features, and deprecations, I recommend referring to the ",[25,26,30],"a",{"href":27,"rel":28},"https:\u002F\u002Fgithub.com\u002Fspring-projects\u002Fspring-boot\u002Fwiki\u002FSpring-Boot-3.2-Release-Notes",[29],"nofollow","release notes",". In this release, I will focus on three main areas:",[33,34,35,50,61],"ul",{},[36,37,38,39],"li",{},"Runtime Efficiency\n",[33,40,41,44,47],{},[36,42,43],{},"Virtual Threads",[36,45,46],{},"Project CRaC (Coordinated Restore at Checkpoint)",[36,48,49],{},"Project Leydon",[36,51,52,53],{},"New Client Abstractions\n",[33,54,55,58],{},[36,56,57],{},"JDBC Client",[36,59,60],{},"REST Client",[36,62,63],{},"Observability Improvements",[65,66,68],"h2",{"id":67},"runtime-efficiency","Runtime Efficiency",[21,70,71],{},"I have had the opportunity to travel to conferences and meet with customers, discussing the impressive features of Spring Boot 3 and beyond. One of the prominent themes in Spring Boot 3 is Runtime Efficiency. But what does that really mean, and which features are contributing to it?",[21,73,74],{},"Runtime efficiency is focused on addressing the challenges that arise when dealing with various workloads in production. Traditionally, a typical Java-based application would be a long-running process designed to handle high throughput. In this scenario, the JVM excels at optimizing for such workloads. It identifies \"hot spots\" or frequently executed areas of the code and compiles them for further optimizations.",[21,76,77],{},"Today, we are developing a wide range of applications with diverse requirements. Some of these applications demand lower memory usage and faster startup times. For others, which involve blocking requests like communication with a database or an HTTP service, scalability is essential.",[21,79,80],{},"Java and Spring now provide solutions for building various types of applications. In Spring Boot 3.0, we introduced Ahead-of-Time (AoT) compilation as a prerequisite for creating native images with GraalVM. In Spring Boot 3.2, we are introducing support for Virtual Threads and Project CRaC (Coordinated Restore at Checkpoint).",[82,83,43],"h3",{"id":84},"virtual-threads",[21,86,87],{},"Java 21 might be one of the most significant releases we have seen in Java, ever. I don’t say that lightly because I know there have been some amazing releases over the years. This release however was the start of the Project Loom story with Virtual Threads being finalized and bringing us a solution to the scalability issues the thread-per-request model introduces.",[82,89,91],{"id":90},"threads-in-java","Threads in Java",[21,93,94],{},"In Java, each statement inside a method executes in a thread. Java is Multi-threaded which means more than one thread can be executing a given set of instructions at once. Threads are fundamental to concurrent programming and allow a Java program to perform multiple tasks or operations concurrently, making efficient use of available resources, such as CPU cores.",[21,96,97,98,102],{},"In Java, a thread (",[99,100,101],"code",{},"java.lang.Thread",") serves as a thin wrapper around the operating system thread, commonly known as Platform Threads. The operating system thread is a limited resource that relies on system resources. One major drawback of Platform Threads, in addition to their ubiquity, is their high resource consumption in terms of memory and processing time.",[21,104,105],{},[106,107],"img",{"alt":108,"src":109},"java_threads.png","\u002Fimages\u002Fblog\u002F2023\u002F12\u002F20\u002Fjava_threads.png",[21,111,112],{},"Now imagine you need to perform a blocking operation such as talking to a database or communicating with a service over HTTP. These operations are consider blocking because the thread responsible for handling this operation needs to wait for the operation to complete.",[21,114,115],{},"Before the introduction of virtual threads, there were two options available for addressing scalability issues in concurrent programming in Java. One option was to add more hardware by scaling horizontally or vertically. Another option was to use asynchronous programming, which, like any architectural choice, has its own advantages and disadvantages.",[21,117,118],{},[106,119],{"alt":120,"src":121},"scaling_options.png","\u002Fimages\u002Fblog\u002F2023\u002F12\u002F20\u002F\u002Fscaling_options.png",[82,123,125],{"id":124},"why-virtual-threads-in-java","Why Virtual Threads in Java?",[21,127,128],{},"Virtual Threads were introduced in JDK 21 as a solution to the challenges of asynchronous programming. These lightweight threads do not block platform threads, making them highly efficient. In fact, you can spawn millions of Virtual Threads without needing to worry about thread pooling. This allows us to write imperative blocking code without significant concerns about scalability.",[21,130,131],{},[106,132],{"alt":133,"src":134},"virtual_threads.png","\u002Fimages\u002Fblog\u002F2023\u002F12\u002F20\u002F\u002Fvirtual_threads.png",[21,136,137],{},"Of course there are still Platform Threads which are a finite resource so how does this work under the hood? When a virtual thread is attached to a platform and needs to perform a blocking task it is unmounted from the platform thread and moved to the heap. When the blocking operation has completed it is taken from the heap and moved to a waiting list for the platform thread it was initially mounted on.",[21,139,140,141,146],{},"This is really just a high level introduction to Virtual Threads in JDK 21. If you want to understand the goals, non-goals, motivation and more about them I would encourage you to take some time to read through the ",[25,142,145],{"href":143,"rel":144},"https:\u002F\u002Fopenjdk.org\u002Fjeps\u002F444",[29],"JEP (JDK Enhancement Proposal)",".",[82,148,150],{"id":149},"virtual-threads-in-spring-boot-example","Virtual Threads in Spring Boot Example",[21,152,153,154,159],{},"If you're interested in learning more about Virtual Threads in Spring Boot, you can check out ",[25,155,158],{"href":156,"rel":157},"https:\u002F\u002Fwww.danvega.dev\u002Fblog\u002Fvirtual-threads-spring-boot",[29],"this article",", which continues the conversation. In this example, you can create a new Spring Boot application, enable virtual threads, and run benchmark tests against it.",[161,162],"you-tube",{"id":163},"THavIYnlwck",[65,165,167],{"id":166},"what-is-project-crac-coordinated-restore-at-checkpoint","What is Project CRaC (Coordinated Restore at Checkpoint)",[21,169,170],{},"In the realm of runtime efficiency, Spring Boot 3.2 introduces an exciting JDK project called Coordinated Restore at Checkpoint (CRaC). With CRaC, projects on Linux can experience faster time to first transaction and achieve optimal code speed with reduced time and resource consumption. By capturing a snapshot of the fully warmed up Java process, CRaC enables the launch of multiple JVMs from this state. It's important to note that not all existing Java programs can seamlessly utilize CRaC, as explicit checkpointing and restoration of resources using the CRaC API are required. However, frameworks like Spring offer native support for CRaC checkpointing right out of the box.",[82,172,174],{"id":173},"why-restore-from-a-checkpoint","Why Restore from a Checkpoint?",[21,176,177],{},"When a Java application runs, the JVM goes through a process of loading, initializing, and optimizing the code used by the application. However, each time the application is restarted, this process needs to be repeated, resulting in time and resource consumption. What if you could eliminate this initialization process and therefore remove the application's startup time and resource consumption?",[21,179,180],{},"One of the primary advantages of CRaC is its ability to create checkpoints within the application's execution flow. This allows the application to go through its initialization phase and, once warmed up and ready to go, a checkpoint can be taken. The checkpoint can then be used the next time the application needs to start up, eliminating the need to warm up the execution environment again.",[21,182,183],{},[106,184],{"alt":185,"src":186},"Checkpoint","\u002Fimages\u002Fblog\u002F2023\u002F12\u002F20\u002Fcheckpoint.png",[21,188,189],{},"I would encourage you to try this out in your applications and see what kind of performance gains you get. In many scenarios, you can expect up to two orders of magnitude faster performance. That is something to be really excited about!",[21,191,192],{},[106,193],{"alt":194,"src":195},"Time to first Operation","\u002Fimages\u002Fblog\u002F2023\u002F12\u002F20\u002Ftime_to_first_operation.png",[21,197,198],{},"When comparing this to something like AOT, there are several advantages. First, you don't need to add hints to the AOT compiler. However, the major advantage, in my opinion, is that natively compiled applications make a closed world assumption at runtime, whereas applications using Project CRaC can still leverage all the dynamic capabilities of the JVM.",[82,200,202],{"id":201},"spring-boot-project-crac-example","Spring Boot + Project CRaC Example",[21,204,205],{},"I mentioned this earlier, but this feature is built on top of a feature in Linux. If you're running Linux locally, you can get this working fairly simply. If you aren't, you need to run the application in a container. The important thing to note is that this is not something you're going to deal with during development. This is a Runtime Efficiency feature and something we can work together with our DevOps teams to implement in our CI\u002FCD process. If you want to see this in action in a Spring Boot 3.2 application, you can check out the video I made with my friend DaShaun below.",[161,207],{"id":208},"sVXUx_Y4hRU",[82,210,212],{"id":211},"project-leydon-and-class-data-sharing","Project Leydon and Class Data Sharing",[21,214,215,216,221],{},"This is fairly new project in the ",[25,217,220],{"href":218,"rel":219},"https:\u002F\u002Fopenjdk.org\u002Fprojects\u002Fleyden\u002F",[29],"OpenJDK"," and its initiative is to improve the startup and warmup of Java applications. The Spring Team has already done some initial work at looking at Project Leydon in the JDK and where it might be useful to Spring Developers.",[21,223,224],{},"Through that exploration they found some interesting discoveries of the JDK’s CDS (”Class Data Sharing”) feature and it has materialized into a new feature that shipping in Spring Framework 6.1 and Spring Boot 3.2. If you’re interested in learning more check out the blog post below.",[21,226,227],{},[25,228,229],{"href":229,"rel":230},"https:\u002F\u002Fspring.io\u002Fblog\u002F2023\u002F12\u002F04\u002Fcds-with-spring-framework-6-1",[29],[65,232,234],{"id":233},"client-abstractions","Client Abstractions",[21,236,237,238,241,242,245],{},"Spring has simplified complex tasks by abstracting the low-level communication layer into an easy-to-use API. This includes interacting with a database through the JDBC Template or Spring Data, as well as communicating with an external service using the ",[99,239,240],{},"RestTemplate"," or ",[99,243,244],{},"WebClient"," for HTTP requests. In Spring Boot 3.2, two new client abstractions have been introduced to further simplify these processes.",[82,247,57],{"id":248},"jdbc-client",[21,250,251],{},"Interacting with databases, reading and persisting data in Java has historically been complex. Factors like building JDBC URLs, managing database connections, and dealing with real-world application concerns such as connection pools need to be considered. Fortunately, Spring simplifies these tasks through its abstractions. One such abstraction is the JDBC template in Spring.",[21,253,254],{},"The JDBC template is a solid abstraction that simplifies database interaction. However, it can become verbose when building simple CRUD services based on resources. It requires a deep understanding of methods for communicating with a database, such as row mappers and column to field mapping, which can be tricky.",[21,256,257],{},"Despite these complexities, one main advantage is the complete control over SQL, which developers highly appreciate. This is where the newest addition, the JDBC client, comes in. It offers a fluent API that is easy to understand and read. One exciting feature of the JDBC client is its auto-configuration in Spring Boot 3.2. This means that we can simply request a bean in our application and get an instance of it without any hassle!",[21,259,260,261,264],{},"Here is an example of a Repository class that contains all of the CRUD methods for reading and persisting data to a database. Note that an instance of the ",[99,262,263],{},"JdbcClient"," is autowired in using constructor injection, and the code is made more readable thanks to the fluent API.",[266,267,272],"pre",{"className":268,"code":269,"language":270,"meta":271,"style":271},"language-java shiki shiki-themes github-light github-dark github-light","@Repository\npublic class PostRepository {\n\n    private final JdbcClient jdbcClient;\n\n    public PostRepository(JdbcClient jdbcClient) {\n        this.jdbcClient = jdbcClient;\n    }\n\n    public List\u003CPost> findAll() {\n        return jdbcClient.sql(\"SELECT * FROM Post\")\n                .query(Post.class)\n                .list();\n    }\n\n    public Optional\u003CPost> findById(String id) {\n        return jdbcClient.sql(\"SELECT * FROM Post WHERE id = :id\")\n                .param(\"id\", id)\n                .query(Post.class)\n                .optional();\n    }\n\n    public void create(Post post) {\n        jdbcClient.sql(\"INSERT INTO Post(id,user_id,title,body) values(?,?,?,?)\")\n                .params(List.of(post.id(), post.userId(), post.title(), post.body()))\n                .update();\n    }\n\n    public void update(Post post, String id) {\n        jdbcClient.sql(\"update Post set user_id = ?, title = ?, body = ? where id = ?\")\n                .params(List.of(post.userId(), post.title(), post.body(), id))\n                .update();\n    }\n\n    public void delete(String id) {\n        jdbcClient.sql(\"delete from Post where id = :id\")\n                .param(\"id\", id)\n                .update();\n    }\n\n}\n","java","",[99,273,274,287,303,309,321,326,344,360,366,371,391,413,425,436,441,446,469,485,501,510,520,525,530,549,564,602,612,617,622,643,657,683,692,697,702,718,732,745,754,759,764],{"__ignoreMap":271},[275,276,279,283],"span",{"class":277,"line":278},"line",1,[275,280,282],{"class":281},"s-uPX","@",[275,284,286],{"class":285},"sibLe","Repository\n",[275,288,290,293,296,300],{"class":277,"line":289},2,[275,291,292],{"class":285},"public",[275,294,295],{"class":285}," class",[275,297,299],{"class":298},"sZnax"," PostRepository",[275,301,302],{"class":281}," {\n",[275,304,306],{"class":277,"line":305},3,[275,307,308],{"emptyLinePlaceholder":12},"\n",[275,310,312,315,318],{"class":277,"line":311},4,[275,313,314],{"class":285},"    private",[275,316,317],{"class":285}," final",[275,319,320],{"class":281}," JdbcClient jdbcClient;\n",[275,322,324],{"class":277,"line":323},5,[275,325,308],{"emptyLinePlaceholder":12},[275,327,329,332,334,337,341],{"class":277,"line":328},6,[275,330,331],{"class":285},"    public",[275,333,299],{"class":298},[275,335,336],{"class":281},"(JdbcClient ",[275,338,340],{"class":339},"spoOn","jdbcClient",[275,342,343],{"class":281},") {\n",[275,345,347,351,354,357],{"class":277,"line":346},7,[275,348,350],{"class":349},"sECI1","        this",[275,352,353],{"class":281},".jdbcClient ",[275,355,356],{"class":285},"=",[275,358,359],{"class":281}," jdbcClient;\n",[275,361,363],{"class":277,"line":362},8,[275,364,365],{"class":281},"    }\n",[275,367,369],{"class":277,"line":368},9,[275,370,308],{"emptyLinePlaceholder":12},[275,372,374,376,379,382,385,388],{"class":277,"line":373},10,[275,375,331],{"class":285},[275,377,378],{"class":281}," List\u003C",[275,380,381],{"class":285},"Post",[275,383,384],{"class":281},"> ",[275,386,387],{"class":298},"findAll",[275,389,390],{"class":281},"() {\n",[275,392,394,397,400,403,406,410],{"class":277,"line":393},11,[275,395,396],{"class":285},"        return",[275,398,399],{"class":281}," jdbcClient.",[275,401,402],{"class":298},"sql",[275,404,405],{"class":281},"(",[275,407,409],{"class":408},"suV6U","\"SELECT * FROM Post\"",[275,411,412],{"class":281},")\n",[275,414,416,419,422],{"class":277,"line":415},12,[275,417,418],{"class":281},"                .",[275,420,421],{"class":298},"query",[275,423,424],{"class":281},"(Post.class)\n",[275,426,428,430,433],{"class":277,"line":427},13,[275,429,418],{"class":281},[275,431,432],{"class":298},"list",[275,434,435],{"class":281},"();\n",[275,437,439],{"class":277,"line":438},14,[275,440,365],{"class":281},[275,442,444],{"class":277,"line":443},15,[275,445,308],{"emptyLinePlaceholder":12},[275,447,449,451,454,456,458,461,464,467],{"class":277,"line":448},16,[275,450,331],{"class":285},[275,452,453],{"class":281}," Optional\u003C",[275,455,381],{"class":285},[275,457,384],{"class":281},[275,459,460],{"class":298},"findById",[275,462,463],{"class":281},"(String ",[275,465,466],{"class":339},"id",[275,468,343],{"class":281},[275,470,472,474,476,478,480,483],{"class":277,"line":471},17,[275,473,396],{"class":285},[275,475,399],{"class":281},[275,477,402],{"class":298},[275,479,405],{"class":281},[275,481,482],{"class":408},"\"SELECT * FROM Post WHERE id = :id\"",[275,484,412],{"class":281},[275,486,488,490,493,495,498],{"class":277,"line":487},18,[275,489,418],{"class":281},[275,491,492],{"class":298},"param",[275,494,405],{"class":281},[275,496,497],{"class":408},"\"id\"",[275,499,500],{"class":281},", id)\n",[275,502,504,506,508],{"class":277,"line":503},19,[275,505,418],{"class":281},[275,507,421],{"class":298},[275,509,424],{"class":281},[275,511,513,515,518],{"class":277,"line":512},20,[275,514,418],{"class":281},[275,516,517],{"class":298},"optional",[275,519,435],{"class":281},[275,521,523],{"class":277,"line":522},21,[275,524,365],{"class":281},[275,526,528],{"class":277,"line":527},22,[275,529,308],{"emptyLinePlaceholder":12},[275,531,533,535,538,541,544,547],{"class":277,"line":532},23,[275,534,331],{"class":285},[275,536,537],{"class":285}," void",[275,539,540],{"class":298}," create",[275,542,543],{"class":281},"(Post ",[275,545,546],{"class":339},"post",[275,548,343],{"class":281},[275,550,552,555,557,559,562],{"class":277,"line":551},24,[275,553,554],{"class":281},"        jdbcClient.",[275,556,402],{"class":298},[275,558,405],{"class":281},[275,560,561],{"class":408},"\"INSERT INTO Post(id,user_id,title,body) values(?,?,?,?)\"",[275,563,412],{"class":281},[275,565,567,569,572,575,578,581,583,586,589,591,594,596,599],{"class":277,"line":566},25,[275,568,418],{"class":281},[275,570,571],{"class":298},"params",[275,573,574],{"class":281},"(List.",[275,576,577],{"class":298},"of",[275,579,580],{"class":281},"(post.",[275,582,466],{"class":298},[275,584,585],{"class":281},"(), post.",[275,587,588],{"class":298},"userId",[275,590,585],{"class":281},[275,592,593],{"class":298},"title",[275,595,585],{"class":281},[275,597,598],{"class":298},"body",[275,600,601],{"class":281},"()))\n",[275,603,605,607,610],{"class":277,"line":604},26,[275,606,418],{"class":281},[275,608,609],{"class":298},"update",[275,611,435],{"class":281},[275,613,615],{"class":277,"line":614},27,[275,616,365],{"class":281},[275,618,620],{"class":277,"line":619},28,[275,621,308],{"emptyLinePlaceholder":12},[275,623,625,627,629,632,634,636,639,641],{"class":277,"line":624},29,[275,626,331],{"class":285},[275,628,537],{"class":285},[275,630,631],{"class":298}," update",[275,633,543],{"class":281},[275,635,546],{"class":339},[275,637,638],{"class":281},", String ",[275,640,466],{"class":339},[275,642,343],{"class":281},[275,644,646,648,650,652,655],{"class":277,"line":645},30,[275,647,554],{"class":281},[275,649,402],{"class":298},[275,651,405],{"class":281},[275,653,654],{"class":408},"\"update Post set user_id = ?, title = ?, body = ? where id = ?\"",[275,656,412],{"class":281},[275,658,660,662,664,666,668,670,672,674,676,678,680],{"class":277,"line":659},31,[275,661,418],{"class":281},[275,663,571],{"class":298},[275,665,574],{"class":281},[275,667,577],{"class":298},[275,669,580],{"class":281},[275,671,588],{"class":298},[275,673,585],{"class":281},[275,675,593],{"class":298},[275,677,585],{"class":281},[275,679,598],{"class":298},[275,681,682],{"class":281},"(), id))\n",[275,684,686,688,690],{"class":277,"line":685},32,[275,687,418],{"class":281},[275,689,609],{"class":298},[275,691,435],{"class":281},[275,693,695],{"class":277,"line":694},33,[275,696,365],{"class":281},[275,698,700],{"class":277,"line":699},34,[275,701,308],{"emptyLinePlaceholder":12},[275,703,705,707,709,712,714,716],{"class":277,"line":704},35,[275,706,331],{"class":285},[275,708,537],{"class":285},[275,710,711],{"class":298}," delete",[275,713,463],{"class":281},[275,715,466],{"class":339},[275,717,343],{"class":281},[275,719,721,723,725,727,730],{"class":277,"line":720},36,[275,722,554],{"class":281},[275,724,402],{"class":298},[275,726,405],{"class":281},[275,728,729],{"class":408},"\"delete from Post where id = :id\"",[275,731,412],{"class":281},[275,733,735,737,739,741,743],{"class":277,"line":734},37,[275,736,418],{"class":281},[275,738,492],{"class":298},[275,740,405],{"class":281},[275,742,497],{"class":408},[275,744,500],{"class":281},[275,746,748,750,752],{"class":277,"line":747},38,[275,749,418],{"class":281},[275,751,609],{"class":298},[275,753,435],{"class":281},[275,755,757],{"class":277,"line":756},39,[275,758,365],{"class":281},[275,760,762],{"class":277,"line":761},40,[275,763,308],{"emptyLinePlaceholder":12},[275,765,767],{"class":277,"line":766},41,[275,768,769],{"class":281},"}\n",[21,771,772,773,778],{},"If you’re interested in diving deeper into the JDBC Client you can check out ",[25,774,777],{"href":775,"rel":776},"https:\u002F\u002Fwww.danvega.dev\u002Fblog\u002Fspring-jdbc-client",[29],"this blog post"," or watch the video below.",[161,780],{"id":781},"JBu5GibEJ4k",[82,783,785],{"id":784},"jdbc-client-vs-spring-data","JDBC Client vs Spring Data",[21,787,788],{},"After discussing the new JDBC Client in Spring Boot 3.2, I was asked about the difference between the JDBC Client and Spring Data JDBC. This presented a good opportunity to explore the various options available in Java and Spring for accessing and persisting data to a database.",[21,790,791],{},"To illustrate this, I created an example where we connect to a database in Java and explained the origins of the original JDBC Template abstraction in Spring. Then, I demonstrated how to access the same database in Spring using the JDBC Template. While discussing some of the issues with the JDBC Template, I introduced the new JDBC Client in Spring Boot 3.2 and highlighted how its simple and fluent API simplifies database access.",[21,793,794],{},"Finally, we delved into Spring Data and how the repository pattern can handle the mundane CRUD functionality, freeing you to focus on your business requirements.",[161,796],{"id":797},"qLDrfebeXS0",[82,799,801],{"id":800},"multiple-datasources-in-spring","Multiple DataSources in Spring",[21,803,804],{},"Another question that arose with the new JDBC Client in Spring Boot 3.2 was whether it is possible to use multiple JDBC Clients when working with multiple DataSources in Spring. I found this to be a great question and a perfect opportunity to discuss how a DataSource and JDBC Client are configured for you in Spring.",[161,806],{"id":807},"ZKYFGuukhT4",[82,809,60],{"id":810},"rest-client",[21,812,813,814,819],{},"Over the years, Spring has offered various solutions for dealing with the complexities of working with web services, particularly RESTful services. In Spring Framework 3.0, the ",[25,815,818],{"href":816,"rel":817},"https:\u002F\u002Fdocs.spring.io\u002Fspring-framework\u002Fdocs\u002Fcurrent\u002Fjavadoc-api\u002Forg\u002Fspringframework\u002Fweb\u002Fclient\u002FRestTemplate.html",[29],"Rest Template"," was introduced as a client for making synchronous HTTP requests. This API simplified the interaction with web services by abstracting the underlying HTTP connection, making it easier for developers to perform HTTP operations and parse responses. However, as requirements grew, so did the API, eventually making it more difficult to use.",[21,821,822],{},"In Spring Framework 5, Spring WebFlux was introduced as a way to create fully asynchronous and non-blocking applications. Alongside this release, the new Web Client was introduced to address the limitations of the RestTemplate in a non-blocking and reactive programming environment. Drawing from the lessons learned with the RestTemplate, the Spring team improved upon it with a simple-to-learn, fluent API.",[21,824,825],{},"Developers really enjoyed the easy to use fluent API of the Web Client. So much that they were bringing in the reactive stack to their blocking MVC applications just to take advantage of the Web Client. Fast forward to Spring Boot 3.2 and the new Rest Client offers a similar experience in imperative style applications.",[21,827,828],{},"To get started with rest client you can create an instance using the Rest Client Builder and setting the base url for your service.",[266,830,832],{"className":268,"code":831,"language":270,"meta":271,"style":271},"private final RestClient restClient;\n\npublic PostService(RestClient.Builder builder) {\n    this.restClient = builder\n            .baseUrl(\"https:\u002F\u002Fjsonplaceholder.typicode.com\u002F\")\n            .build();\n}\n",[99,833,834,844,848,858,871,886,895],{"__ignoreMap":271},[275,835,836,839,841],{"class":277,"line":278},[275,837,838],{"class":285},"private",[275,840,317],{"class":285},[275,842,843],{"class":281}," RestClient restClient;\n",[275,845,846],{"class":277,"line":289},[275,847,308],{"emptyLinePlaceholder":12},[275,849,850,852,855],{"class":277,"line":305},[275,851,292],{"class":285},[275,853,854],{"class":298}," PostService",[275,856,857],{"class":281},"(RestClient.Builder builder) {\n",[275,859,860,863,866,868],{"class":277,"line":311},[275,861,862],{"class":349},"    this",[275,864,865],{"class":281},".restClient ",[275,867,356],{"class":285},[275,869,870],{"class":281}," builder\n",[275,872,873,876,879,881,884],{"class":277,"line":323},[275,874,875],{"class":281},"            .",[275,877,878],{"class":298},"baseUrl",[275,880,405],{"class":281},[275,882,883],{"class":408},"\"https:\u002F\u002Fjsonplaceholder.typicode.com\u002F\"",[275,885,412],{"class":281},[275,887,888,890,893],{"class":277,"line":328},[275,889,875],{"class":281},[275,891,892],{"class":298},"build",[275,894,435],{"class":281},[275,896,897],{"class":277,"line":346},[275,898,769],{"class":281},[21,900,901],{},"As a developer, one of the features that I really appreciate about the new Rest Client is how intuitive its API is. When I type \"rest client dot\", I am presented with sensible methods like get, post, put, and delete. This eliminates any confusion I had about which overloaded method to choose from, simplifying everything for me.",[21,903,904],{},[106,905],{"alt":906,"src":907},"REST Client Fluent API","\u002Fimages\u002Fblog\u002F2023\u002F12\u002F20\u002Frest_client_dot.png",[21,909,910,911,914],{},"After calling the ",[99,912,913],{},"get()"," method, we can use the fluent API to complete our call. As you can see from the methods below, this is very readable, even for someone who has never used it before.",[266,916,918],{"className":268,"code":917,"language":270,"meta":271,"style":271},"@Service\npublic class PostService {\n\n    private final RestClient restClient;\n\n    public PostService(RestClient.Builder builder) {\n        this.restClient = builder\n                .baseUrl(\"https:\u002F\u002Fjsonplaceholder.typicode.com\u002F\")\n                .build();\n    }\n\n    public List\u003CPost> findAll() {\n        return restClient.get()\n                .uri(\"\u002Fposts\")\n                .retrieve()\n                .body(new ParameterizedTypeReference\u003C>(){});\n    }\n\n    public ResponseEntity\u003CPost> findById(Long id) {\n        return restClient.get()\n                .uri(\"\u002Fposts\u002F{id}\", id)\n                .retrieve()\n                .toEntity(Post.class);\n    }\n\n}\n",[99,919,920,927,937,941,949,953,967,977,989,997,1001,1005,1019,1032,1046,1055,1069,1073,1077,1097,1107,1120,1128,1138,1142,1146],{"__ignoreMap":271},[275,921,922,924],{"class":277,"line":278},[275,923,282],{"class":281},[275,925,926],{"class":285},"Service\n",[275,928,929,931,933,935],{"class":277,"line":289},[275,930,292],{"class":285},[275,932,295],{"class":285},[275,934,854],{"class":298},[275,936,302],{"class":281},[275,938,939],{"class":277,"line":305},[275,940,308],{"emptyLinePlaceholder":12},[275,942,943,945,947],{"class":277,"line":311},[275,944,314],{"class":285},[275,946,317],{"class":285},[275,948,843],{"class":281},[275,950,951],{"class":277,"line":323},[275,952,308],{"emptyLinePlaceholder":12},[275,954,955,957,959,962,965],{"class":277,"line":328},[275,956,331],{"class":285},[275,958,854],{"class":298},[275,960,961],{"class":281},"(RestClient.Builder ",[275,963,964],{"class":339},"builder",[275,966,343],{"class":281},[275,968,969,971,973,975],{"class":277,"line":346},[275,970,350],{"class":349},[275,972,865],{"class":281},[275,974,356],{"class":285},[275,976,870],{"class":281},[275,978,979,981,983,985,987],{"class":277,"line":362},[275,980,418],{"class":281},[275,982,878],{"class":298},[275,984,405],{"class":281},[275,986,883],{"class":408},[275,988,412],{"class":281},[275,990,991,993,995],{"class":277,"line":368},[275,992,418],{"class":281},[275,994,892],{"class":298},[275,996,435],{"class":281},[275,998,999],{"class":277,"line":373},[275,1000,365],{"class":281},[275,1002,1003],{"class":277,"line":393},[275,1004,308],{"emptyLinePlaceholder":12},[275,1006,1007,1009,1011,1013,1015,1017],{"class":277,"line":415},[275,1008,331],{"class":285},[275,1010,378],{"class":281},[275,1012,381],{"class":285},[275,1014,384],{"class":281},[275,1016,387],{"class":298},[275,1018,390],{"class":281},[275,1020,1021,1023,1026,1029],{"class":277,"line":427},[275,1022,396],{"class":285},[275,1024,1025],{"class":281}," restClient.",[275,1027,1028],{"class":298},"get",[275,1030,1031],{"class":281},"()\n",[275,1033,1034,1036,1039,1041,1044],{"class":277,"line":438},[275,1035,418],{"class":281},[275,1037,1038],{"class":298},"uri",[275,1040,405],{"class":281},[275,1042,1043],{"class":408},"\"\u002Fposts\"",[275,1045,412],{"class":281},[275,1047,1048,1050,1053],{"class":277,"line":443},[275,1049,418],{"class":281},[275,1051,1052],{"class":298},"retrieve",[275,1054,1031],{"class":281},[275,1056,1057,1059,1061,1063,1066],{"class":277,"line":448},[275,1058,418],{"class":281},[275,1060,598],{"class":298},[275,1062,405],{"class":281},[275,1064,1065],{"class":285},"new",[275,1067,1068],{"class":281}," ParameterizedTypeReference\u003C>(){});\n",[275,1070,1071],{"class":277,"line":471},[275,1072,365],{"class":281},[275,1074,1075],{"class":277,"line":487},[275,1076,308],{"emptyLinePlaceholder":12},[275,1078,1079,1081,1084,1086,1088,1090,1093,1095],{"class":277,"line":503},[275,1080,331],{"class":285},[275,1082,1083],{"class":281}," ResponseEntity\u003C",[275,1085,381],{"class":285},[275,1087,384],{"class":281},[275,1089,460],{"class":298},[275,1091,1092],{"class":281},"(Long ",[275,1094,466],{"class":339},[275,1096,343],{"class":281},[275,1098,1099,1101,1103,1105],{"class":277,"line":512},[275,1100,396],{"class":285},[275,1102,1025],{"class":281},[275,1104,1028],{"class":298},[275,1106,1031],{"class":281},[275,1108,1109,1111,1113,1115,1118],{"class":277,"line":522},[275,1110,418],{"class":281},[275,1112,1038],{"class":298},[275,1114,405],{"class":281},[275,1116,1117],{"class":408},"\"\u002Fposts\u002F{id}\"",[275,1119,500],{"class":281},[275,1121,1122,1124,1126],{"class":277,"line":527},[275,1123,418],{"class":281},[275,1125,1052],{"class":298},[275,1127,1031],{"class":281},[275,1129,1130,1132,1135],{"class":277,"line":532},[275,1131,418],{"class":281},[275,1133,1134],{"class":298},"toEntity",[275,1136,1137],{"class":281},"(Post.class);\n",[275,1139,1140],{"class":277,"line":551},[275,1141,365],{"class":281},[275,1143,1144],{"class":277,"line":566},[275,1145,308],{"emptyLinePlaceholder":12},[275,1147,1148],{"class":277,"line":604},[275,1149,769],{"class":281},[21,1151,1152,1153,778],{},"If you’re interested in learning more about the Rest Client you check out ",[25,1154,1157],{"href":1155,"rel":1156},"https:\u002F\u002Fwww.danvega.dev\u002Fblog\u002Frest-client-first-look",[29],"this post",[161,1159],{"id":1160},"UDNrJAvKc0k",[82,1162,1164],{"id":1163},"http-interface-clients","Http Interface Clients",[21,1166,1167],{},"Spring Framework 6 and Spring Boot 3 have introduced HTTP Interface Clients. With the Spring Framework, you can define an HTTP service as a Java interface using HTTP exchange methods. By generating a proxy that implements this interface, you can handle the HTTP exchanges. This simplifies remote access to HTTP services and provides the flexibility to choose an API style, such as synchronous or reactive.",[21,1169,1170],{},"This was great, but it was dependent on the Web Client, so you needed to bring in that dependency into your Spring MVC applications for it to work. In Spring Boot 3.2 this is now based on the new Rest Client if you’re in a MVC application.",[21,1172,1173,1174,1177],{},"Instead of having to write the boilerplate low level code to communicate with another service you can just define the method contracts using the ",[99,1175,1176],{},"@HttpExchange"," annotation or one of the specialized versions of it.",[266,1179,1181],{"className":268,"code":1180,"language":270,"meta":271,"style":271},"public interface ArticleClient {\n\n    @GetExchange(\"\u002Farticles\")\n    ResponseEntity\u003CList\u003CArticle>> findAll();\n\n    @GetExchange(\"\u002Farticles\u002F{id}\")\n    Optional\u003CArticle> findOne(@PathVariable Integer id);\n\n    @PostExchange(\"\u002Farticles\")\n    void create(@RequestBody Article article);\n\n    @PutExchange(\"\u002Farticles\u002F{id}\")\n    void update(@RequestBody Article article, @PathVariable Integer id);\n\n    @DeleteExchange(\"\u002Farticles\u002F{id}\")\n    void delete(@PathVariable Integer id);\n}\n",[99,1182,1183,1195,1199,1214,1229,1233,1246,1272,1276,1289,1309,1313,1326,1351,1355,1368,1384],{"__ignoreMap":271},[275,1184,1185,1187,1190,1193],{"class":277,"line":278},[275,1186,292],{"class":285},[275,1188,1189],{"class":285}," interface",[275,1191,1192],{"class":298}," ArticleClient",[275,1194,302],{"class":281},[275,1196,1197],{"class":277,"line":289},[275,1198,308],{"emptyLinePlaceholder":12},[275,1200,1201,1204,1207,1209,1212],{"class":277,"line":305},[275,1202,1203],{"class":281},"    @",[275,1205,1206],{"class":285},"GetExchange",[275,1208,405],{"class":281},[275,1210,1211],{"class":408},"\"\u002Farticles\"",[275,1213,412],{"class":281},[275,1215,1216,1219,1222,1225,1227],{"class":277,"line":311},[275,1217,1218],{"class":281},"    ResponseEntity\u003CList\u003C",[275,1220,1221],{"class":285},"Article",[275,1223,1224],{"class":281},">> ",[275,1226,387],{"class":298},[275,1228,435],{"class":281},[275,1230,1231],{"class":277,"line":323},[275,1232,308],{"emptyLinePlaceholder":12},[275,1234,1235,1237,1239,1241,1244],{"class":277,"line":328},[275,1236,1203],{"class":281},[275,1238,1206],{"class":285},[275,1240,405],{"class":281},[275,1242,1243],{"class":408},"\"\u002Farticles\u002F{id}\"",[275,1245,412],{"class":281},[275,1247,1248,1251,1253,1255,1258,1261,1264,1267,1269],{"class":277,"line":346},[275,1249,1250],{"class":281},"    Optional\u003C",[275,1252,1221],{"class":285},[275,1254,384],{"class":281},[275,1256,1257],{"class":298},"findOne",[275,1259,1260],{"class":281},"(@",[275,1262,1263],{"class":285},"PathVariable",[275,1265,1266],{"class":281}," Integer ",[275,1268,466],{"class":339},[275,1270,1271],{"class":281},");\n",[275,1273,1274],{"class":277,"line":362},[275,1275,308],{"emptyLinePlaceholder":12},[275,1277,1278,1280,1283,1285,1287],{"class":277,"line":368},[275,1279,1203],{"class":281},[275,1281,1282],{"class":285},"PostExchange",[275,1284,405],{"class":281},[275,1286,1211],{"class":408},[275,1288,412],{"class":281},[275,1290,1291,1294,1296,1298,1301,1304,1307],{"class":277,"line":373},[275,1292,1293],{"class":285},"    void",[275,1295,540],{"class":298},[275,1297,1260],{"class":281},[275,1299,1300],{"class":285},"RequestBody",[275,1302,1303],{"class":281}," Article ",[275,1305,1306],{"class":339},"article",[275,1308,1271],{"class":281},[275,1310,1311],{"class":277,"line":393},[275,1312,308],{"emptyLinePlaceholder":12},[275,1314,1315,1317,1320,1322,1324],{"class":277,"line":415},[275,1316,1203],{"class":281},[275,1318,1319],{"class":285},"PutExchange",[275,1321,405],{"class":281},[275,1323,1243],{"class":408},[275,1325,412],{"class":281},[275,1327,1328,1330,1332,1334,1336,1338,1340,1343,1345,1347,1349],{"class":277,"line":427},[275,1329,1293],{"class":285},[275,1331,631],{"class":298},[275,1333,1260],{"class":281},[275,1335,1300],{"class":285},[275,1337,1303],{"class":281},[275,1339,1306],{"class":339},[275,1341,1342],{"class":281},", @",[275,1344,1263],{"class":285},[275,1346,1266],{"class":281},[275,1348,466],{"class":339},[275,1350,1271],{"class":281},[275,1352,1353],{"class":277,"line":438},[275,1354,308],{"emptyLinePlaceholder":12},[275,1356,1357,1359,1362,1364,1366],{"class":277,"line":443},[275,1358,1203],{"class":281},[275,1360,1361],{"class":285},"DeleteExchange",[275,1363,405],{"class":281},[275,1365,1243],{"class":408},[275,1367,412],{"class":281},[275,1369,1370,1372,1374,1376,1378,1380,1382],{"class":277,"line":448},[275,1371,1293],{"class":285},[275,1373,711],{"class":298},[275,1375,1260],{"class":281},[275,1377,1263],{"class":285},[275,1379,1266],{"class":281},[275,1381,466],{"class":339},[275,1383,1271],{"class":281},[275,1385,1386],{"class":277,"line":471},[275,1387,769],{"class":281},[21,1389,1390],{},"I liken this to the Spring Data project where we can use the repository abstraction to get the CRUD functionality out of the box freeing us up to focus on the business requirements of the application.",[21,1392,1393,1394,1399],{},"I had a good conversation on ",[25,1395,1398],{"href":1396,"rel":1397},"https:\u002F\u002Ftanzu.vmware.com\u002Fdeveloper\u002Ftv\u002Fspring-office-hours\u002F0059\u002F",[29],"Spring Office Hours with Olga and Rossen"," from the Spring team about the history of clients in Spring and Http Interfaces.",[65,1401,1403],{"id":1402},"observability","Observability",[21,1405,1406],{},"Observability was a major theme in Spring Boot 3.0 and will continue to be important for the framework and projects in the ecosystem. But what exactly is it, and why should you care about it?",[21,1408,1409],{},"Observability is the ability to observe the internal state of a running system from the outside. It consists of three pillars: logging, metrics, and traces.",[21,1411,1412],{},"It is not enough to simply build an application and release it into production hoping for the best. You need to have visibility into your application's inner workings so that you can proactively address issues instead of reacting to customer complaints.",[21,1414,1415],{},[106,1416],{"alt":1417,"src":1417},"https:\u002F\u002Fimages.unsplash.com\u002Fphoto-1483919283443-8db97e2bcd81?ixlib=rb-4.0.3&q=85&fm=jpg&crop=entropy&cs=srgb",[82,1419,1421],{"id":1420},"observation-api","Observation API",[21,1423,1424],{},"One of the most significant changes in Spring Boot 3.0 was the introduction of a unified Observation API. This API, which is used by the framework internally, is now also available to developers. The purpose of this API is to allow us to instrument our applications. For each instrumentation, we can perform the following actions:",[33,1426,1427,1430,1433,1436,1439],{},[36,1428,1429],{},"Emit Log Messages",[36,1431,1432],{},"Start & Stop Timers",[36,1434,1435],{},"Increment Counters",[36,1437,1438],{},"Start & Stop Spans",[36,1440,1441],{},"Signal Errors",[21,1443,1444,1445,1448],{},"If you want to do metrics and tracing, you would typically need to instrument your application twice. This can result in a lot of boilerplate code, which may discourage you from implementing observation in the first place.To create an observation, you can use the ",[99,1446,1447],{},"createNotStarted"," method of the Observation class. This method simplifies the process of observing code and captures all the necessary information. However, be cautious as this approach can lead to code pollution if you instrument code excessively.",[266,1450,1452],{"className":268,"code":1451,"language":270,"meta":271,"style":271},"@SpringBootApplication\npublic class Application {\n\n    private static final Logger log = LoggerFactory.getLogger(Application.class);\n\n    public static void main(String[] args) {\n        SpringApplication.run(Application.class, args);\n    }\n    \n    @Bean\n    CommandLineRunner commandLineRunner(ObservationRegistry registry) {\n        return args -> {\n            \u002F\u002F Create an Observation and observe your code!\n            Observation.createNotStarted(\"user.name\", registry)\n                    .contextualName(\"getting-user-name\")\n          \u002F\u002F let's assume that you can have 3 user types\n                    .lowCardinalityKeyValue(\"userType\", \"userType1\")\n          \u002F\u002F let's assume that this is an arbitrary number \n                    .highCardinalityKeyValue(\"userId\", \"1234\") \n          \u002F\u002F this is a shortcut for starting an observation, opening a scope,\n                    .observe(() -> log.info(\"Hello\")); \n        };\n    }\n}\n",[99,1453,1454,1461,1472,1476,1499,1503,1527,1538,1542,1547,1554,1570,1582,1588,1603,1618,1623,1643,1648,1668,1673,1699,1704,1708],{"__ignoreMap":271},[275,1455,1456,1458],{"class":277,"line":278},[275,1457,282],{"class":281},[275,1459,1460],{"class":285},"SpringBootApplication\n",[275,1462,1463,1465,1467,1470],{"class":277,"line":289},[275,1464,292],{"class":285},[275,1466,295],{"class":285},[275,1468,1469],{"class":298}," Application",[275,1471,302],{"class":281},[275,1473,1474],{"class":277,"line":305},[275,1475,308],{"emptyLinePlaceholder":12},[275,1477,1478,1480,1483,1485,1488,1490,1493,1496],{"class":277,"line":311},[275,1479,314],{"class":285},[275,1481,1482],{"class":285}," static",[275,1484,317],{"class":285},[275,1486,1487],{"class":281}," Logger log ",[275,1489,356],{"class":285},[275,1491,1492],{"class":281}," LoggerFactory.",[275,1494,1495],{"class":298},"getLogger",[275,1497,1498],{"class":281},"(Application.class);\n",[275,1500,1501],{"class":277,"line":323},[275,1502,308],{"emptyLinePlaceholder":12},[275,1504,1505,1507,1509,1511,1514,1516,1519,1522,1525],{"class":277,"line":328},[275,1506,331],{"class":285},[275,1508,1482],{"class":285},[275,1510,537],{"class":285},[275,1512,1513],{"class":298}," main",[275,1515,405],{"class":281},[275,1517,1518],{"class":285},"String",[275,1520,1521],{"class":281},"[] ",[275,1523,1524],{"class":339},"args",[275,1526,343],{"class":281},[275,1528,1529,1532,1535],{"class":277,"line":346},[275,1530,1531],{"class":281},"        SpringApplication.",[275,1533,1534],{"class":298},"run",[275,1536,1537],{"class":281},"(Application.class, args);\n",[275,1539,1540],{"class":277,"line":362},[275,1541,365],{"class":281},[275,1543,1544],{"class":277,"line":368},[275,1545,1546],{"class":281},"    \n",[275,1548,1549,1551],{"class":277,"line":373},[275,1550,1203],{"class":281},[275,1552,1553],{"class":285},"Bean\n",[275,1555,1556,1559,1562,1565,1568],{"class":277,"line":393},[275,1557,1558],{"class":281},"    CommandLineRunner ",[275,1560,1561],{"class":298},"commandLineRunner",[275,1563,1564],{"class":281},"(ObservationRegistry ",[275,1566,1567],{"class":339},"registry",[275,1569,343],{"class":281},[275,1571,1572,1574,1577,1580],{"class":277,"line":415},[275,1573,396],{"class":285},[275,1575,1576],{"class":281}," args ",[275,1578,1579],{"class":285},"->",[275,1581,302],{"class":281},[275,1583,1584],{"class":277,"line":427},[275,1585,1587],{"class":1586},"s4-Ip","            \u002F\u002F Create an Observation and observe your code!\n",[275,1589,1590,1593,1595,1597,1600],{"class":277,"line":438},[275,1591,1592],{"class":281},"            Observation.",[275,1594,1447],{"class":298},[275,1596,405],{"class":281},[275,1598,1599],{"class":408},"\"user.name\"",[275,1601,1602],{"class":281},", registry)\n",[275,1604,1605,1608,1611,1613,1616],{"class":277,"line":443},[275,1606,1607],{"class":281},"                    .",[275,1609,1610],{"class":298},"contextualName",[275,1612,405],{"class":281},[275,1614,1615],{"class":408},"\"getting-user-name\"",[275,1617,412],{"class":281},[275,1619,1620],{"class":277,"line":448},[275,1621,1622],{"class":1586},"          \u002F\u002F let's assume that you can have 3 user types\n",[275,1624,1625,1627,1630,1632,1635,1638,1641],{"class":277,"line":471},[275,1626,1607],{"class":281},[275,1628,1629],{"class":298},"lowCardinalityKeyValue",[275,1631,405],{"class":281},[275,1633,1634],{"class":408},"\"userType\"",[275,1636,1637],{"class":281},", ",[275,1639,1640],{"class":408},"\"userType1\"",[275,1642,412],{"class":281},[275,1644,1645],{"class":277,"line":487},[275,1646,1647],{"class":1586},"          \u002F\u002F let's assume that this is an arbitrary number \n",[275,1649,1650,1652,1655,1657,1660,1662,1665],{"class":277,"line":503},[275,1651,1607],{"class":281},[275,1653,1654],{"class":298},"highCardinalityKeyValue",[275,1656,405],{"class":281},[275,1658,1659],{"class":408},"\"userId\"",[275,1661,1637],{"class":281},[275,1663,1664],{"class":408},"\"1234\"",[275,1666,1667],{"class":281},") \n",[275,1669,1670],{"class":277,"line":512},[275,1671,1672],{"class":1586},"          \u002F\u002F this is a shortcut for starting an observation, opening a scope,\n",[275,1674,1675,1677,1680,1683,1685,1688,1691,1693,1696],{"class":277,"line":522},[275,1676,1607],{"class":281},[275,1678,1679],{"class":298},"observe",[275,1681,1682],{"class":281},"(() ",[275,1684,1579],{"class":285},[275,1686,1687],{"class":281}," log.",[275,1689,1690],{"class":298},"info",[275,1692,405],{"class":281},[275,1694,1695],{"class":408},"\"Hello\"",[275,1697,1698],{"class":281},")); \n",[275,1700,1701],{"class":277,"line":527},[275,1702,1703],{"class":281},"        };\n",[275,1705,1706],{"class":277,"line":532},[275,1707,365],{"class":281},[275,1709,1710],{"class":277,"line":551},[275,1711,769],{"class":281},[82,1713,1715],{"id":1714},"observability-improvements-in-spring-boot-32","Observability Improvements in Spring Boot 3.2",[21,1717,1718,1719,1722,1723,1726,1727,1726,1730,1726,1733,1736,1737,1740,1741,1744],{},"Prior to Spring Boot 3.2 you could use the ",[99,1720,1721],{},"@Observed"," annotation but you to do some manual configuration to make this happen. In Spring Boot 3.2 you can now use Micrometers ",[99,1724,1725],{},"[@Timed](https:\u002F\u002Fmicrometer.io\u002Fdocs\u002Fconcepts#_the_timed_annotation)",", ",[99,1728,1729],{},"@Counted",[99,1731,1732],{},"@NewSpan",[99,1734,1735],{},"@ContinueSpan"," and ",[99,1738,1739],{},"[@Observed](https:\u002F\u002Fmicrometer.io\u002Fdocs\u002Fobservation#_using_annotations_with_observed)"," annotations. The aspects for them are now auto-configured if you have AspectJ on the classpath. You can do this by adding the ",[99,1742,1743],{},"spring-boot-starter-aop"," dependency to your project.",[266,1746,1750],{"className":1747,"code":1748,"language":1749,"meta":271,"style":271},"language-xml shiki shiki-themes github-light github-dark github-light","\u003Cdependency>\n    \u003CgroupId>org.springframework.boot\u003C\u002FgroupId>\n    \u003CartifactId>spring-boot-starter-aop\u003C\u002FartifactId>\n\u003C\u002Fdependency>\n","xml",[99,1751,1752,1764,1779,1793],{"__ignoreMap":271},[275,1753,1754,1757,1761],{"class":277,"line":278},[275,1755,1756],{"class":281},"\u003C",[275,1758,1760],{"class":1759},"suaqH","dependency",[275,1762,1763],{"class":281},">\n",[275,1765,1766,1769,1772,1775,1777],{"class":277,"line":289},[275,1767,1768],{"class":281},"    \u003C",[275,1770,1771],{"class":1759},"groupId",[275,1773,1774],{"class":281},">org.springframework.boot\u003C\u002F",[275,1776,1771],{"class":1759},[275,1778,1763],{"class":281},[275,1780,1781,1783,1786,1789,1791],{"class":277,"line":305},[275,1782,1768],{"class":281},[275,1784,1785],{"class":1759},"artifactId",[275,1787,1788],{"class":281},">spring-boot-starter-aop\u003C\u002F",[275,1790,1785],{"class":1759},[275,1792,1763],{"class":281},[275,1794,1795,1798,1800],{"class":277,"line":311},[275,1796,1797],{"class":281},"\u003C\u002F",[275,1799,1760],{"class":1759},[275,1801,1763],{"class":281},[21,1803,1804,1805,1807],{},"Instrumenting the same code becomes much cleaner with the ",[99,1806,1721],{}," annotation!",[266,1809,1811],{"className":268,"code":1810,"language":270,"meta":271,"style":271},"@Bean\n@Observed(name = \"user.name\", contextualName = \"getter-user-name\")\nCommandLineRunner commandLineRunner(ObservationRegistry registry) {\n    return args -> {\n        log.info(\"Hello, World!\");\n    };\n}\n",[99,1812,1813,1819,1848,1858,1869,1883,1888],{"__ignoreMap":271},[275,1814,1815,1817],{"class":277,"line":278},[275,1816,282],{"class":281},[275,1818,1553],{"class":285},[275,1820,1821,1823,1826,1828,1831,1834,1837,1839,1841,1843,1846],{"class":277,"line":289},[275,1822,282],{"class":281},[275,1824,1825],{"class":285},"Observed",[275,1827,405],{"class":281},[275,1829,1830],{"class":349},"name",[275,1832,1833],{"class":285}," =",[275,1835,1836],{"class":408}," \"user.name\"",[275,1838,1637],{"class":281},[275,1840,1610],{"class":349},[275,1842,1833],{"class":285},[275,1844,1845],{"class":408}," \"getter-user-name\"",[275,1847,412],{"class":281},[275,1849,1850,1853,1855],{"class":277,"line":305},[275,1851,1852],{"class":281},"CommandLineRunner ",[275,1854,1561],{"class":298},[275,1856,1857],{"class":281},"(ObservationRegistry registry) {\n",[275,1859,1860,1863,1865,1867],{"class":277,"line":311},[275,1861,1862],{"class":285},"    return",[275,1864,1576],{"class":281},[275,1866,1579],{"class":285},[275,1868,302],{"class":281},[275,1870,1871,1874,1876,1878,1881],{"class":277,"line":323},[275,1872,1873],{"class":281},"        log.",[275,1875,1690],{"class":298},[275,1877,405],{"class":281},[275,1879,1880],{"class":408},"\"Hello, World!\"",[275,1882,1271],{"class":281},[275,1884,1885],{"class":277,"line":328},[275,1886,1887],{"class":281},"    };\n",[275,1889,1890],{"class":277,"line":346},[275,1891,769],{"class":281},[65,1893,1895],{"id":1894},"conclusion","Conclusion",[21,1897,1898],{},"This article covers various topics related to Spring Boot 3.2. It introduces virtual threads as a solution for scalability issues in concurrent programming, discusses the Coordinated Restore at Checkpoint (CRaC) project for faster startup time and reduced resource consumption, explores the new client abstractions for JDBC and REST in Spring Boot, and highlights observability improvements. It also provides links to articles, videos, and blog posts for further reading and examples. I hope you enjoyed this and as always friends",[21,1900,1901],{},"Happy Coding",[1903,1904,1905],"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 .sibLe, html code.shiki .sibLe{--shiki-default:#D73A49;--shiki-dark:#F97583;--shiki-sepia:#D73A49}html pre.shiki code .sZnax, html code.shiki .sZnax{--shiki-default:#6F42C1;--shiki-dark:#B392F0;--shiki-sepia:#6F42C1}html pre.shiki code .spoOn, html code.shiki .spoOn{--shiki-default:#E36209;--shiki-dark:#FFAB70;--shiki-sepia:#E36209}html pre.shiki code .sECI1, html code.shiki .sECI1{--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-sepia:#005CC5}html pre.shiki code .suV6U, html code.shiki .suV6U{--shiki-default:#032F62;--shiki-dark:#9ECBFF;--shiki-sepia:#032F62}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);}html pre.shiki code .s4-Ip, html code.shiki .s4-Ip{--shiki-default:#6A737D;--shiki-dark:#6A737D;--shiki-sepia:#6A737D}html pre.shiki code .suaqH, html code.shiki .suaqH{--shiki-default:#22863A;--shiki-dark:#85E89D;--shiki-sepia:#22863A}",{"title":271,"searchDepth":289,"depth":289,"links":1907},[1908,1914,1919,1926,1930],{"id":67,"depth":289,"text":68,"children":1909},[1910,1911,1912,1913],{"id":84,"depth":305,"text":43},{"id":90,"depth":305,"text":91},{"id":124,"depth":305,"text":125},{"id":149,"depth":305,"text":150},{"id":166,"depth":289,"text":167,"children":1915},[1916,1917,1918],{"id":173,"depth":305,"text":174},{"id":201,"depth":305,"text":202},{"id":211,"depth":305,"text":212},{"id":233,"depth":289,"text":234,"children":1920},[1921,1922,1923,1924,1925],{"id":248,"depth":305,"text":57},{"id":784,"depth":305,"text":785},{"id":800,"depth":305,"text":801},{"id":810,"depth":305,"text":60},{"id":1163,"depth":305,"text":1164},{"id":1402,"depth":289,"text":1403,"children":1927},[1928,1929],{"id":1420,"depth":305,"text":1421},{"id":1714,"depth":305,"text":1715},{"id":1894,"depth":289,"text":1895},[1932,1947,1960,1975,1989,2004,2017,2031,2045,2058,2070,2082,2094,2106,2119,2133,2145,2158,2172,2186,2198,2211,2223,2236,2250,2262,2276,2289,2301,2315,2328,2340,2353,2364,2376,2388,2400,2412,2423,2435,2448,2460,2474,2485,2498,2511,2522,2534,2546,2558,2570,2581,2594,2606,2618,2629,2641,2652,2665,2678,2691,2702,2713,2724,2735,2746,2757,2768,2779,2790,2802,2813,2826,2838,2849,2860,2871,2882,2893,2904,2915,2926,2937,2949,2961,2973,2986,2999,3012,3024,3036,3048,3060,3071,3082,3086,3098,3110,3122,3134,3146,3158,3171,3185,3196,3207,3219,3231,3243,3255,3268,3280,3292,3304,3316,3329,3341,3355,3368,3380,3392,3405,3416,3428,3440,3453,3465,3477,3489,3501,3513,3526,3540,3552,3564,3575,3586,3599,3612,3626,3638,3649,3660,3671,3683,3695,3708,3721,3734,3746,3758,3772,3783,3794,3805,3816,3828,3839,3850,3862,3874,3886,3898,3910,3923,3935,3948,3960,3971,3982,3994,4006,4018,4029,4040,4051,4062,4073,4084,4095,4107,4118,4129,4140,4150,4160,4172,4183,4194,4204,4215,4226,4236,4245,4255,4265,4275,4286,4296,4307,4318,4328,4338,4348,4358,4368,4379,4389,4400,4410,4420,4430,4441,4451,4461,4471,4482,4491,4501,4511,4521,4531,4542,4552,4561,4570,4581,4592,4602,4611,4621,4631,4641,4652,4662,4672,4682,4693,4702,4712,4723,4735,4746,4756,4767,4778,4788,4798,4810,4821,4832,4843,4853,4863,4875,4886,4896,4906,4916,4927,4936,4945,4954,4963,4972,4981,4990,4999,5008],{"_id":1933,"path":1934,"title":1935,"description":1936,"meta":1937,"readingTime":1945},"blog\u002Fblog\u002F2026\u002F08\u002F05\u002Ffive-steps-of-ai-adoption.md","\u002Fblog\u002F2026\u002F08\u002F05\u002Ffive-steps-of-ai-adoption","The 5 Steps of AI Adoption: Which One Are You On?","Learn the 5 steps of AI adoption mapped out by Boris Cherny, creator of Claude Code, and how to move from copy-pasting code to supervised autonomy.",{"slug":1938,"date":1939,"published":12,"tags":1940,"author":15,"cover":1943,"video":1944,"excerpt":11,"shortDesc":1936},"five-steps-of-ai-adoption","2026-08-05T09:00:00.000Z",[1941,14,1942],"AI","Java","five-steps-of-ai-adoption.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fg12mC2J11d0",{"minutes":415,"text":1946},"12 min read",{"_id":1948,"path":1949,"title":1950,"description":1951,"meta":1952,"readingTime":1958},"blog\u002Fblog\u002F2026\u002F07\u002F31\u002Fcan-you-trust-ai-generated-code.md","\u002Fblog\u002F2026\u002F07\u002F31\u002Fcan-you-trust-ai-generated-code","Can You Trust AI-Generated Code?","Can you trust AI-generated code? It depends on what you already know. A look at why AI code feels great in unfamiliar stacks and how to verify it.",{"slug":1953,"date":1954,"published":12,"tags":1955,"author":15,"cover":1956,"video":1957,"excerpt":11,"shortDesc":1951},"can-you-trust-ai-generated-code","2026-07-31T09:00:00.000Z",[14,1942,1941],"can-you-trust-ai-generated-code.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FUuM2-nRsLuA",{"minutes":427,"text":1959},"13 min read",{"_id":1961,"path":1962,"title":1963,"description":1964,"meta":1965,"readingTime":1973},"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":1966,"date":1967,"published":12,"tags":1968,"author":15,"cover":1971,"video":1972,"excerpt":11,"shortDesc":1964},"upgrading-dependencies-with-ai","2026-07-30T09:00:00.000Z",[1941,1969,1970],"Web Development","Nuxt","upgrading-dependencies-with-ai.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMYtia9xsTrQ",{"minutes":393,"text":1974},"11 min read",{"_id":1976,"path":1977,"title":1978,"description":1979,"meta":1980,"readingTime":1987},"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":1981,"date":1982,"published":12,"tags":1983,"author":15,"cover":1985,"video":1986,"excerpt":11,"shortDesc":1979},"spring-ai-guardrails-safeguard-advisor","2026-07-28T09:00:00.000Z",[1984,14,1942],"Spring AI","spring-ai-guardrails-safeguard-advisor.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FEZ6Uh1-8Ui4",{"minutes":522,"text":1988},"21 min read",{"_id":1990,"path":1991,"title":1992,"description":1993,"meta":1994,"readingTime":2002},"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":1995,"date":1996,"published":12,"tags":1997,"author":15,"cover":2000,"video":2001,"excerpt":11,"shortDesc":1993},"docker-compose-for-java-developers","2026-07-27T09:00:00.000Z",[1942,1998,1999],"Docker","Postgres","docker-compose-for-java-developers.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F0LNVXHKKJb8",{"minutes":471,"text":2003},"17 min read",{"_id":2005,"path":2006,"title":2007,"description":2008,"meta":2009,"readingTime":2015},"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":2010,"date":2011,"published":12,"tags":2012,"author":15,"cover":2013,"video":2014,"excerpt":11,"shortDesc":2008},"spring-ai-tool-calling-advisor-2-0","2026-07-24T09:00:00.000Z",[1984,14,1942],"spring-ai-tool-calling-advisor-2-0.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fg6IhOsFKM7c",{"minutes":503,"text":2016},"19 min read",{"_id":2018,"path":2019,"title":2020,"description":2021,"meta":2022,"readingTime":2030},"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":2023,"date":2024,"published":12,"tags":2025,"author":11,"cover":2029,"video":11,"excerpt":11,"shortDesc":2021},"embabel-1-0-ga","2026-07-20T09:00:00.000Z",[270,2026,2027,2028],"spring-ai","embabel","ai-agents","embabel-1-0-ga-brutalist.png",{"minutes":415,"text":1946},{"_id":2032,"path":2033,"title":2034,"description":2035,"meta":2036,"readingTime":2043},"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":2037,"date":2038,"published":12,"tags":2039,"author":15,"cover":2042,"video":11,"excerpt":11,"shortDesc":2035},"content-creation-workflow","2026-07-18T09:00:00.000Z",[2040,2041,1941],"YouTube","Blogging","content-creation-workflow-blueprint.png",{"minutes":362,"text":2044},"8 min read",{"_id":2046,"path":2047,"title":2048,"description":2049,"meta":2050,"readingTime":2056},"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":2051,"date":2052,"published":12,"tags":2053,"author":15,"cover":2054,"video":2055,"excerpt":11,"shortDesc":2049},"self-correcting-structured-output","2026-07-17T09:00:00.000Z",[1984,14,1942],"self-correcting-structured-output.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvxOeeNyOtZY",{"minutes":448,"text":2057},"16 min read",{"_id":2059,"path":2060,"title":2061,"description":2062,"meta":2063,"readingTime":2068},"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":2064,"date":2065,"published":12,"tags":2066,"author":15,"cover":2067,"video":11,"excerpt":11,"shortDesc":2062},"can-you-use-java-for-ai","2026-07-15T09:00:00.000Z",[1942,1941,1984],"can-you-use-java-for-ai-editorial.png",{"minutes":438,"text":2069},"14 min read",{"_id":2071,"path":2072,"title":2073,"description":2074,"meta":2075,"readingTime":2081},"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":2076,"date":2077,"published":12,"tags":2078,"author":15,"cover":2080,"video":11,"excerpt":11,"shortDesc":2074},"spring-boot-end-of-life","2026-07-14T13:00:00.000Z",[14,1942,2079,1941],"Spring Boot 4","spring-boot-end-of-life-terminal.png",{"minutes":393,"text":1974},{"_id":2083,"path":2084,"title":2085,"description":2086,"meta":2087,"readingTime":2092},"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":2088,"date":2089,"published":12,"tags":2090,"author":15,"cover":2091,"video":11,"excerpt":11,"shortDesc":2086},"kill-process-on-port","2026-07-14T09:00:00.000Z",[1942,14],"kill-process-on-port.png",{"minutes":346,"text":2093},"7 min read",{"_id":2095,"path":2096,"title":2097,"description":2098,"meta":2099,"readingTime":2105},"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":2100,"date":2101,"published":12,"tags":2102,"author":15,"cover":2103,"video":2104,"excerpt":11,"shortDesc":2098},"spring-ai-tool-search","2026-07-09T09:00:00.000Z",[1984,14],"spring-ai-tool-search.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FVG00DildlvY",{"minutes":471,"text":2003},{"_id":2107,"path":2108,"title":2109,"description":2110,"meta":2111,"readingTime":2117},"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":2112,"date":2113,"published":12,"tags":2114,"author":15,"cover":2115,"video":2116,"excerpt":11,"shortDesc":2110},"spring-ai-custom-advisors-tool-logging-token-counter","2026-07-08T09:00:00.000Z",[1984,14,1942],"spring-ai-custom-advisors-tool-logging-token-counter.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FWNJFR-_N9bc",{"minutes":551,"text":2118},"24 min read",{"_id":2120,"path":2121,"title":2122,"description":2123,"meta":2124,"readingTime":2131},"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":2125,"date":2126,"published":12,"tags":2127,"author":15,"cover":2129,"video":2130,"excerpt":11,"shortDesc":2123},"ui-dot-sh-agent-skills-for-building-beautiful-uis","2026-07-07T09:00:00.000Z",[1941,2128],"Tailwind CSS","ui-dot-sh-agent-skills-for-building-beautiful-uis.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F-B7uyMp54S4",{"minutes":368,"text":2132},"9 min read",{"_id":2134,"path":2135,"title":2136,"description":2137,"meta":2138,"readingTime":2144},"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":2139,"date":2140,"published":12,"tags":2141,"author":15,"cover":2142,"video":2143,"excerpt":11,"shortDesc":2137},"chatclient-vs-chatmodel-spring-ai","2026-07-02T09:00:00.000Z",[1984,14],"chatclient-vs-chatmodel-spring-ai.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FIdIDI71sGZM",{"minutes":438,"text":2069},{"_id":2146,"path":2147,"title":2148,"description":2149,"meta":2150,"readingTime":2157},"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":2151,"date":2152,"published":12,"tags":2153,"author":15,"cover":2155,"video":2156,"excerpt":11,"shortDesc":2149},"x-twitter-mcp-servers-spring-ai","2026-07-01T09:00:00.000Z",[1984,2154,14],"MCP","x-twitter-mcp-servers-spring-ai.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fj4chxGtqkY8",{"minutes":503,"text":2016},{"_id":2159,"path":2160,"title":2161,"description":2162,"meta":2163,"readingTime":2170},"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":2164,"date":2165,"published":12,"tags":2166,"author":15,"cover":2168,"video":2169,"excerpt":11,"shortDesc":2162},"type-safe-property-paths-spring-boot-4-1","2026-06-30T09:00:00.000Z",[14,2167],"Spring Data","type-safe-property-paths-spring-boot-4-1.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FqBC-TrIzsPg",{"minutes":487,"text":2171},"18 min read",{"_id":2173,"path":2174,"title":2175,"description":2176,"meta":2177,"readingTime":2184},"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":2178,"date":2179,"published":12,"tags":2180,"author":15,"cover":2182,"video":2183,"excerpt":11,"shortDesc":2176},"redis-listener-spring-boot-4-1","2026-06-29T09:00:00.000Z",[14,2181],"Redis","redis-listener-spring-boot-4-1.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlMbgBYlUtfc",{"minutes":373,"text":2185},"10 min read",{"_id":2187,"path":2188,"title":2189,"description":2190,"meta":2191,"readingTime":2197},"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":2192,"date":2193,"published":12,"tags":2194,"author":15,"cover":2195,"video":2196,"excerpt":11,"shortDesc":2190},"spring-boot-ssrf-protection-inet-address-filter","2026-06-26T09:00:00.000Z",[14,1942],"spring-boot-ssrf-protection-inet-address-filter.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPDbBG_GrcwU",{"minutes":427,"text":1959},{"_id":2199,"path":2200,"title":2201,"description":2202,"meta":2203,"readingTime":2209},"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":2204,"date":2205,"published":12,"tags":2206,"author":15,"cover":2207,"video":2208,"excerpt":11,"shortDesc":2202},"lazy-jdbc-connections-spring-boot-4-1","2026-06-25T09:00:00.000Z",[14,2167],"lazy-jdbc-connections-spring-boot-4-1.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlsaBN1U2EB8",{"minutes":443,"text":2210},"15 min read",{"_id":2212,"path":2213,"title":2214,"description":2215,"meta":2216,"readingTime":2222},"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":2217,"date":2218,"published":12,"tags":2219,"author":15,"cover":2220,"video":2221,"excerpt":11,"shortDesc":2215},"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":427,"text":1959},{"_id":2224,"path":2225,"title":2226,"description":2227,"meta":2228,"readingTime":2235},"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":2229,"date":2230,"published":12,"tags":2231,"author":15,"cover":2233,"video":2234,"excerpt":11,"shortDesc":2227},"spring-modulith-externalized-events","2026-05-20T09:00:00.000Z",[2232],"Spring Modulith","spring-modulith-externalized-events.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F8sJIWwc7Jss",{"minutes":471,"text":2003},{"_id":2237,"path":2238,"title":2239,"description":2240,"meta":2241,"readingTime":2249},"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":2242,"date":2243,"published":12,"tags":2244,"author":15,"cover":2247,"video":2248,"excerpt":11,"shortDesc":2240},"spring-boot-kafka-quick-start","2026-05-18T08:00:00.000Z",[14,2245,2246],"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":487,"text":2171},{"_id":2251,"path":2252,"title":2253,"description":2254,"meta":2255,"readingTime":2261},"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":2256,"date":2257,"published":12,"tags":2258,"author":15,"cover":2259,"video":2260,"excerpt":11,"shortDesc":2254},"spring-modulith-durable-events","2026-05-14T09:00:00.000Z",[14,2232],"spring-modulith-durable-events.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKLX9ulb2AfM",{"minutes":522,"text":1988},{"_id":2263,"path":2264,"title":2265,"description":2266,"meta":2267,"readingTime":2274},"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":2268,"date":2269,"published":12,"tags":2270,"author":15,"cover":2272,"video":2273,"excerpt":11,"shortDesc":2266},"introduction-to-spring-modulith","2026-04-30T09:00:00.000Z",[14,2232,1942,2271],"Modular Monolith","introduction-to-spring-modulith.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxHlDyKVyvig",{"minutes":527,"text":2275},"22 min read",{"_id":2277,"path":2278,"title":2279,"description":2280,"meta":2281,"readingTime":2288},"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":2282,"date":2283,"published":12,"tags":2284,"author":11,"cover":2286,"video":2287,"excerpt":11,"shortDesc":2280},"embabel-mcp-servers-and-tools","2026-04-10T08:00:00.000Z",[1984,2285,1942],"Embabel","embabel_tools_mcp.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F2mGr7kdstJs",{"minutes":448,"text":2057},{"_id":2290,"path":2291,"title":2292,"description":2293,"meta":2294,"readingTime":2300},"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":2295,"date":2296,"published":12,"tags":2297,"author":11,"cover":2298,"video":2299,"excerpt":11,"shortDesc":2293},"embabel-first-look","2026-04-02T08:00:00.000Z",[1984,1942],"EmbabelFirstLook.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FG5VDQCZu6t0",{"minutes":522,"text":1988},{"_id":2302,"path":2303,"title":2304,"description":2305,"meta":2306,"readingTime":2313},"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":2307,"date":2308,"published":12,"tags":2309,"author":15,"cover":2311,"video":2312,"excerpt":11,"shortDesc":2305},"getting-started-with-graphql-for-java-developers","2026-04-01T08:00:00.000Z",[14,1942,2310],"GraphQL","graphql-java-developers-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxZSv67a9OYA",{"minutes":694,"text":2314},"33 min read",{"_id":2316,"path":2317,"title":2318,"description":2319,"meta":2320,"readingTime":2326},"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":2321,"date":2322,"published":12,"tags":2323,"author":15,"cover":2324,"video":2325,"excerpt":11,"shortDesc":2319},"spring-building-me-a-coding-agent","2026-03-31T08:00:00.000Z",[1984,14,1942],".\u002Fcoding_agent_cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FP8s65qu-LZI",{"minutes":604,"text":2327},"26 min read",{"_id":2329,"path":2330,"title":2331,"description":2332,"meta":2333,"readingTime":2339},"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":2334,"date":2335,"published":12,"tags":2336,"author":15,"cover":2337,"video":2338,"excerpt":11,"shortDesc":2332},"spring-ai-deep-research-agent","2026-03-27T09:00:00.000Z",[1941],"spring-ai-deep-research-agent.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F_amdeuCM-aY",{"minutes":522,"text":1988},{"_id":2341,"path":2342,"title":2343,"description":2344,"meta":2345,"readingTime":2352},"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":2346,"date":2347,"published":12,"tags":2348,"author":15,"cover":2350,"video":2351,"excerpt":11,"shortDesc":2344},"rest-client-error-handling","2026-03-26T09:00:00.000Z",[14,2349,60,1942],"Spring Framework","rest-client-error-handling.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMuYzEZk6-zI",{"minutes":487,"text":2171},{"_id":2354,"path":2355,"title":2356,"description":2357,"meta":2358,"readingTime":2363},"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":2359,"date":2360,"published":12,"tags":2361,"author":15,"cover":2362,"video":11,"excerpt":11,"shortDesc":2357},"browserbase-spring-boot-starter","2026-03-25T08:00:00.000Z",[14,1984],"browswerbase_spring_boot_starter_cover.png",{"minutes":503,"text":2016},{"_id":2365,"path":2366,"title":2367,"description":2368,"meta":2369,"readingTime":2375},"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":2370,"date":2371,"published":12,"tags":2372,"author":15,"cover":2373,"video":2374,"excerpt":11,"shortDesc":2368},"jdk-26-final-means-final","2026-03-20T10:00:00.000Z",[1942],"java-26-final-means-final.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fj-y0m6j6TBc",{"minutes":393,"text":1974},{"_id":2377,"path":2378,"title":2379,"description":2380,"meta":2381,"readingTime":2387},"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":2382,"date":2383,"published":12,"tags":2384,"author":15,"cover":2385,"video":2386,"excerpt":11,"shortDesc":2380},"spring-initializr-tui","2026-03-14T10:00:00.000Z",[1942,14],"spring-init-tui-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJ9C2MiQTIYs",{"minutes":373,"text":2185},{"_id":2389,"path":2390,"title":2391,"description":2392,"meta":2393,"readingTime":2399},"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":2394,"date":2395,"published":12,"tags":2396,"author":15,"cover":2397,"video":2398,"excerpt":11,"shortDesc":2392},"spring-ai-prompt-caching","2026-02-08T09:00:00.000Z",[1984],"spring-ai-prompt-caching.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FeYb7BKW4QcU",{"minutes":438,"text":2069},{"_id":2401,"path":2402,"title":2403,"description":2404,"meta":2405,"readingTime":2411},"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":2406,"date":2407,"published":12,"tags":2408,"author":15,"cover":2409,"video":2410,"excerpt":11,"shortDesc":2404},"openai-codex-first-look","2026-02-05T09:00:00.000Z",[1942,1941],"codex_thumbnail.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FQ44TPEtNcNo",{"minutes":373,"text":2185},{"_id":2413,"path":2414,"title":2415,"description":2416,"meta":2417,"readingTime":2422},"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":2418,"date":2407,"published":12,"tags":2419,"author":15,"cover":2420,"video":2421,"excerpt":11,"shortDesc":2416},"ralph-loop",[1941,1942],"ralph-loop.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FCV97l0GkPHo",{"minutes":448,"text":2057},{"_id":2424,"path":2425,"title":2426,"description":2427,"meta":2428,"readingTime":2434},"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":2429,"date":2430,"published":12,"tags":2431,"author":15,"cover":2432,"video":2433,"excerpt":11,"shortDesc":2427},"opentelemetry-spring-boot","2025-12-23T09:00:00.000Z",[14,1403],"spring-boot-open-telemetry.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6_Y41z7OIv8",{"minutes":415,"text":1946},{"_id":2436,"path":2437,"title":2438,"description":2439,"meta":2440,"readingTime":2447},"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":2441,"date":2442,"published":12,"tags":2443,"author":15,"cover":2445,"video":2446,"excerpt":11,"shortDesc":2439},"spring-boot-4-rest-api","2025-12-18T09:00:00.000Z",[14,1942,2444],"REST API","spring-boot-rest-api-easy.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FklnxzL8oQdM",{"minutes":503,"text":2016},{"_id":2449,"path":2450,"title":2451,"description":2452,"meta":2453,"readingTime":2459},"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":2454,"date":2455,"published":12,"tags":2456,"author":15,"cover":2457,"video":2458,"excerpt":11,"shortDesc":2452},"loading-spring-resources","2025-12-17T09:00:00.000Z",[14,2349],"spring_resources_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FHmcgwj65Unw",{"minutes":503,"text":2016},{"_id":2461,"path":2462,"title":2463,"description":2464,"meta":2465,"readingTime":2472},"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":2466,"date":2467,"published":12,"tags":2468,"author":15,"cover":2470,"video":2471,"excerpt":11,"shortDesc":2464},"spring-security-7-multi-factor-authentication","2025-12-16T09:00:00.000Z",[14,2469],"Spring Security","spring_security_mfa_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKmNAqlaKwjw",{"minutes":619,"text":2473},"28 min read",{"_id":2475,"path":2476,"title":2477,"description":2478,"meta":2479,"readingTime":2484},"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":2480,"date":2481,"published":12,"tags":2482,"author":15,"cover":11,"video":2483,"excerpt":11,"shortDesc":2478},"spring-boot-4-modularization","2025-12-12T09:00:00.000Z",[14,2079,1942],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkTLuhE7_jGU",{"minutes":438,"text":2069},{"_id":2486,"path":2487,"title":2488,"description":2489,"meta":2490,"readingTime":2496},"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":2491,"date":2492,"published":12,"tags":2493,"author":15,"cover":2494,"video":2495,"excerpt":11,"shortDesc":2489},"mock-vs-rest","2025-12-10T09:00:00.000Z",[14],".\u002Fmock-vs-rest.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxWcqvrpj2PM",{"minutes":532,"text":2497},"23 min read",{"_id":2499,"path":2500,"title":2501,"description":2502,"meta":2503,"readingTime":2510},"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":2504,"date":2505,"published":12,"tags":2506,"author":15,"cover":2508,"video":2509,"excerpt":11,"shortDesc":2502},"jms-client","2025-12-05T09:00:00.000Z",[1942,14,2507],"JMS",".\u002Fjms_client_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F91xVrWlzIe4",{"minutes":471,"text":2003},{"_id":2512,"path":2513,"title":2514,"description":2515,"meta":2516,"readingTime":2521},"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":2517,"date":2518,"published":12,"tags":2519,"author":15,"cover":2520,"video":11,"excerpt":11,"shortDesc":2515},"spring-data-aot-repositories","2025-11-25T10:00:00.000Z",[14,2167],"spring-data-aot-repositories.png",{"minutes":443,"text":2210},{"_id":2523,"path":2524,"title":2525,"description":2526,"meta":2527,"readingTime":2533},"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":2528,"date":2529,"published":12,"tags":2530,"author":15,"cover":2532,"video":11,"excerpt":11,"shortDesc":2526},"spring-boot-4-is-here","2025-11-24T09:00:00.000Z",[14,2079,2531,1942],"Spring","spring-boot-4-is-here.png",{"minutes":694,"text":2314},{"_id":2535,"path":2536,"title":2537,"description":2538,"meta":2539,"readingTime":2545},"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":2540,"date":2541,"published":12,"tags":2542,"author":15,"cover":2543,"video":2544,"excerpt":11,"shortDesc":2538},"spring-boot-4-native-retry-support","2025-11-13T09:00:00.000Z",[14,2079,1942],"spring_resilience_features_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FCT1wGTwOfg0",{"minutes":619,"text":2473},{"_id":2547,"path":2548,"title":2549,"description":2550,"meta":2551,"readingTime":2557},"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":2552,"date":2553,"published":12,"tags":2554,"author":15,"cover":2555,"video":2556,"excerpt":11,"shortDesc":2550},"jackson-3-spring-boot-4","2025-11-10T09:00:00.000Z",[14,2079],"jackson_3_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4cvP_qroLH4",{"minutes":619,"text":2473},{"_id":2559,"path":2560,"title":2561,"description":2562,"meta":2563,"readingTime":2569},"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":2564,"date":2565,"published":12,"tags":2566,"author":15,"cover":2567,"video":2568,"excerpt":11,"shortDesc":2562},"http-interfaces-spring-boot-4","2025-11-06T09:00:00.000Z",[14,2079,2349],"http_interfaces_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTEd5e4Thu7M",{"minutes":503,"text":2016},{"_id":2571,"path":2572,"title":2573,"description":2574,"meta":2575,"readingTime":2580},"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":2576,"date":2577,"published":12,"tags":2578,"author":15,"cover":11,"video":2579,"excerpt":11,"shortDesc":2574},"spring-boot-4-null-safety","2025-11-05T09:00:00.000Z",[1942,14,2079],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FQlGnaRoujL8",{"minutes":527,"text":2275},{"_id":2582,"path":2583,"title":2584,"description":2585,"meta":2586,"readingTime":2593},"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":2587,"date":2588,"published":12,"tags":2589,"author":15,"cover":2590,"video":2591,"excerpt":11,"shortDesc":2592},"programmatic-bean-registration","2025-11-01T09:00:00.000Z",[14,2079,2349],"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":415,"text":1946},{"_id":2595,"path":2596,"title":2597,"description":2598,"meta":2599,"readingTime":2605},"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":2600,"date":2601,"published":12,"tags":2602,"author":15,"cover":2604,"video":11,"excerpt":11,"shortDesc":2598},"spring-framework-7-rest-test-client","2025-10-30T09:00:00.000Z",[2349,14,2603],"Testing","spring_boot_4_rest-test-client.png",{"minutes":527,"text":2275},{"_id":2607,"path":2608,"title":2609,"description":2610,"meta":2611,"readingTime":2617},"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":2612,"date":2613,"published":12,"tags":2614,"author":15,"cover":2615,"video":2616,"excerpt":11,"shortDesc":2610},"spring-ai-mcp-client","2025-10-28T09:00:00.000Z",[1984],"spring_ai_mcp_client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTSFkdlreRMQ",{"minutes":438,"text":2069},{"_id":2619,"path":2620,"title":2621,"description":2622,"meta":2623,"readingTime":2628},"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":2624,"date":2625,"published":12,"tags":2626,"author":15,"cover":2627,"video":11,"excerpt":11,"shortDesc":2622},"api-versioning-with-graphql","2025-09-30T09:00:00.000Z",[14,2310],"api_versioning_graphql.png",{"minutes":443,"text":2210},{"_id":2630,"path":2631,"title":2632,"description":2633,"meta":2634,"readingTime":2639},"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":2635,"date":2636,"published":12,"tags":2637,"author":15,"cover":2638,"video":271,"excerpt":11,"shortDesc":2633},"spring-boot-4-api-versioning","2025-09-25T09:00:00.000Z",[14,2079,2349],"spring_boot_4_api_versioning.png",{"minutes":566,"text":2640},"25 min read",{"_id":2642,"path":2643,"title":2644,"description":2645,"meta":2646,"readingTime":2651},"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":2647,"date":2648,"published":12,"tags":2649,"author":15,"cover":2650,"video":11,"excerpt":11,"shortDesc":2645},"cyc-mcp-server-spring-ai","2025-09-24T09:00:00.000Z",[2531,1984,1941,2154,1942],"spring_ai_mcp_servers_cover.png",{"minutes":522,"text":1988},{"_id":2653,"path":2654,"title":2655,"description":2656,"meta":2657,"readingTime":2662},"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":2658,"date":2659,"published":12,"tags":2660,"author":15,"cover":2661,"video":11,"excerpt":11,"shortDesc":2656},"spring-boot-3-features","2025-09-17T09:00:00.000Z",[14,1942,2349],"spring_boot_3_features_cover.png",{"minutes":2663,"text":2664},52,"52 min read",{"_id":2666,"path":2667,"title":2668,"description":2669,"meta":2670,"readingTime":2677},"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":2671,"date":2672,"published":12,"tags":2673,"author":15,"cover":2674,"video":2675,"excerpt":11,"shortDesc":2676},"jdk-24-virtual-threads-without-pinning","2025-04-09T17:00:00.000Z",[1942,2531],".\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":487,"text":2171},{"_id":2679,"path":2680,"title":2681,"description":2682,"meta":2683,"readingTime":2690},"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":2684,"date":2685,"published":12,"tags":2686,"author":15,"cover":2687,"video":2688,"excerpt":11,"shortDesc":2689},"docker-model-runner","2025-04-07T17:00:00.000Z",[1984],".\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":438,"text":2069},{"_id":2692,"path":2693,"title":2694,"description":2695,"meta":2696,"readingTime":2701},"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":2697,"date":2698,"published":12,"tags":2699,"author":15,"cover":11,"video":2700,"excerpt":11,"shortDesc":2695},"creating-your-first-mcp-server-java","2025-03-26T17:00:00.000Z",[1942,2531,2154],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fw5YVHG1j3Co",{"minutes":448,"text":2057},{"_id":2703,"path":2704,"title":2705,"description":2706,"meta":2707,"readingTime":2711},"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":2708,"date":2709,"published":12,"tags":2710,"author":15,"cover":11,"video":11,"excerpt":11,"shortDesc":2706},"stream-gatherers","2025-03-21T09:00:00.000Z",[1942],{"minutes":659,"text":2712},"31 min read",{"_id":2714,"path":2715,"title":2716,"description":2717,"meta":2718,"readingTime":2723},"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":2719,"date":2720,"published":12,"tags":2721,"author":15,"cover":11,"video":2722,"excerpt":11,"shortDesc":2717},"model-context-protocol-introduction","2025-03-11T17:00:00.000Z",[1984,2154],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FnNLshWCoe0o",{"minutes":438,"text":2069},{"_id":2725,"path":2726,"title":2727,"description":2728,"meta":2729,"readingTime":2733},"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":2730,"date":2731,"published":12,"tags":2732,"author":15,"cover":11,"video":11,"excerpt":11,"shortDesc":2728},"ai-powered-dev-hacks-confoo-2025","2025-02-27T09:00:00.000Z",[1941],{"minutes":328,"text":2734},"6 min read",{"_id":2736,"path":2737,"title":2738,"description":2739,"meta":2740,"readingTime":2745},"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":2741,"date":2742,"published":12,"tags":2743,"author":15,"cover":11,"video":2744,"excerpt":11,"shortDesc":2739},"spring-boot-graphql-query-by-example","2024-12-02T09:00:00.000Z",[2310,14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJ8vC8RflPPY",{"minutes":368,"text":2132},{"_id":2747,"path":2748,"title":2749,"description":2750,"meta":2751,"readingTime":2756},"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":2752,"date":2753,"published":12,"tags":2754,"author":15,"cover":2755,"video":11,"excerpt":11,"shortDesc":2750},"no-lombok","2024-11-11T09:00:00.000Z",[1942],".\u002Fno_lombok_cover.png",{"minutes":415,"text":1946},{"_id":2758,"path":2759,"title":2760,"description":2761,"meta":2762,"readingTime":2767},"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":2763,"date":2764,"published":12,"tags":2765,"author":15,"cover":11,"video":2766,"excerpt":11,"shortDesc":2761},"spring-data-jpa-query-by-example","2024-11-08T17:00:00.000Z",[14,2167],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FNGVWHdGNbiI",{"minutes":368,"text":2132},{"_id":2769,"path":2770,"title":2771,"description":2772,"meta":2773,"readingTime":2778},"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":2774,"date":2775,"published":12,"tags":2776,"author":15,"cover":11,"video":2777,"excerpt":11,"shortDesc":2772},"rest-client-oauth2-support","2024-11-05T17:00:00.000Z",[14,2469],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FnFKcJDpUuZ8",{"minutes":373,"text":2185},{"_id":2780,"path":2781,"title":2782,"description":2783,"meta":2784,"readingTime":2789},"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":2785,"date":2786,"published":12,"tags":2787,"author":15,"cover":11,"video":2788,"excerpt":11,"shortDesc":2783},"spring-ai-tokens","2024-11-01T17:00:00.000Z",[1984],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FZUCVRppXPSc",{"minutes":427,"text":1959},{"_id":2791,"path":2792,"title":2793,"description":2794,"meta":2795,"readingTime":2801},"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":2796,"date":2797,"published":12,"tags":2798,"author":15,"cover":11,"video":2800,"excerpt":11,"shortDesc":2794},"spring-boot-rest-client-logging","2024-10-31T09:00:00.000Z",[14,2799],"Rest Client","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fl35P5GylXN8",{"minutes":443,"text":2210},{"_id":2803,"path":2804,"title":2805,"description":2806,"meta":2807,"readingTime":2812},"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":2808,"date":2809,"published":12,"tags":2810,"author":15,"cover":11,"video":2811,"excerpt":11,"shortDesc":2806},"spring-boot-environment-variables","2024-10-29T17:00:00.000Z",[14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FrQV76dufxz4",{"minutes":346,"text":2093},{"_id":2814,"path":2815,"title":2816,"description":2817,"meta":2818,"readingTime":2824},"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":2819,"date":2820,"published":12,"tags":2821,"author":15,"cover":2822,"video":2823,"excerpt":11,"shortDesc":2817},"spring-boot-oauth-demo","2024-10-24T17:00:00.000Z",[14,2469],".\u002Fspring-security-jte-login.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Ff1h4GkhxMp8",{"minutes":512,"text":2825},"20 min read",{"_id":2827,"path":2828,"title":2829,"description":2830,"meta":2831,"readingTime":2837},"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":2832,"date":2833,"published":12,"tags":2834,"author":15,"cover":11,"video":2836,"excerpt":11,"shortDesc":2830},"getting-started-with-spring-ai-rag","2024-10-22T09:00:00.000Z",[2835,2026,270],"spring","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6Pgmr7xMjiY",{"minutes":368,"text":2132},{"_id":2839,"path":2840,"title":2841,"description":2842,"meta":2843,"readingTime":2848},"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":2844,"date":2845,"published":12,"tags":2846,"author":15,"cover":11,"video":2847,"excerpt":11,"shortDesc":2842},"ai-java-developers","2024-10-15T09:00:00.000Z",[1942,14,1941],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FuoOwVWVl_eU",{"minutes":368,"text":2132},{"_id":2850,"path":2851,"title":2852,"description":2853,"meta":2854,"readingTime":2859},"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":2855,"date":2856,"published":12,"tags":2857,"author":15,"cover":11,"video":2858,"excerpt":11,"shortDesc":2853},"spring-ai-multiple-llms","2024-10-14T09:00:00.000Z",[14,1942,1984],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FbK1MTlEDQvk",{"minutes":368,"text":2132},{"_id":2861,"path":2862,"title":2863,"description":2864,"meta":2865,"readingTime":2870},"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":2866,"date":2867,"published":12,"tags":2868,"author":15,"cover":11,"video":2869,"excerpt":11,"shortDesc":2864},"spring-ai-chat-memory","2024-10-11T09:00:00.000Z",[14,1942,1984],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6VdM1MOOMrw",{"minutes":393,"text":1974},{"_id":2872,"path":2873,"title":2874,"description":2875,"meta":2876,"readingTime":2881},"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":2877,"date":2878,"published":12,"tags":2879,"author":15,"cover":11,"video":2880,"excerpt":11,"shortDesc":2875},"spring-ai-streaming-chatbot","2024-10-08T20:00:00.000Z",[14,1942,1984],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fq2p0mG4RICM",{"minutes":503,"text":2016},{"_id":2883,"path":2884,"title":2885,"description":2886,"meta":2887,"readingTime":2892},"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":2888,"date":2889,"published":12,"tags":2890,"author":15,"cover":11,"video":2891,"excerpt":11,"shortDesc":2886},"jte-forms","2024-10-07T20:00:00.000Z",[14,1942],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fifnv4kGtZgo",{"minutes":368,"text":2132},{"_id":2894,"path":2895,"title":2896,"description":2897,"meta":2898,"readingTime":2903},"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":2899,"date":2900,"published":12,"tags":2901,"author":15,"cover":11,"video":2902,"excerpt":11,"shortDesc":2897},"spring-boot-jte-htmx","2024-10-06T20:00:00.000Z",[14,1942],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkFksiDRZ824",{"minutes":448,"text":2057},{"_id":2905,"path":2906,"title":2907,"description":2908,"meta":2909,"readingTime":2914},"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":2910,"date":2911,"published":12,"tags":2912,"author":15,"cover":11,"video":2913,"excerpt":11,"shortDesc":2908},"jte-layouts","2024-10-03T20:00:00.000Z",[14,1942],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FdWe-C3-YQEg",{"minutes":393,"text":1974},{"_id":2916,"path":2917,"title":2918,"description":2919,"meta":2920,"readingTime":2925},"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":2921,"date":2922,"published":12,"tags":2923,"author":15,"cover":11,"video":2924,"excerpt":11,"shortDesc":2919},"hello-jte","2024-10-01T20:00:00.000Z",[14,1942],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKoWgHSWA1cc",{"minutes":368,"text":2132},{"_id":2927,"path":2928,"title":2929,"description":2930,"meta":2931,"readingTime":2936},"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":2932,"date":2933,"published":12,"tags":2934,"author":15,"cover":2935,"video":11,"excerpt":11,"shortDesc":2930},"jdk-23-first-look","2024-09-12T17:00:00.000Z",[270],".\u002Fjdk-23.png",{"minutes":471,"text":2003},{"_id":2938,"path":2939,"title":2940,"description":2941,"meta":2942,"readingTime":2948},"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":2943,"date":2944,"published":12,"tags":2945,"author":15,"cover":2947,"video":11,"excerpt":11,"shortDesc":2941},"claude-sonnet-spring-ai","2024-08-07T17:00:00.000Z",[2946,1984,1942],"Artificial Intelligence (AI)",".\u002Fclaude_sonnet_spring_ai_cover.png",{"minutes":427,"text":1959},{"_id":2950,"path":2951,"title":2952,"description":2953,"meta":2954,"readingTime":2959},"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":2955,"date":2956,"published":12,"tags":2957,"author":15,"cover":2958,"video":11,"excerpt":11,"shortDesc":2953},"claude-sonnet-35","2024-08-06T17:00:00.000Z",[2946],".\u002Fclaude-sonnet-35.jpeg",{"minutes":645,"text":2960},"30 min read",{"_id":2962,"path":2963,"title":2964,"description":2965,"meta":2966,"readingTime":2972},"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":2967,"date":2968,"published":12,"tags":2969,"author":15,"cover":2970,"video":2971,"excerpt":11,"shortDesc":2965},"ollama-web-ui","2024-08-05T09:00:00.000Z",[1941],"ollama_web_ui.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FBzFafshQkWw",{"minutes":362,"text":2044},{"_id":2974,"path":2975,"title":2976,"description":2977,"meta":2978,"readingTime":2985},"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":2979,"date":2980,"published":12,"tags":2981,"author":15,"cover":2983,"video":2984,"excerpt":11,"shortDesc":2977},"java-method-references","2024-08-01T09:00:00.000Z",[1942,2982],"Functional Programming","java_method_references_with_me.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FDELCbBuCHHE",{"minutes":362,"text":2044},{"_id":2987,"path":2988,"title":2989,"description":2990,"meta":2991,"readingTime":2998},"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":2992,"date":2993,"published":12,"tags":2994,"author":15,"cover":2995,"video":2996,"excerpt":11,"shortDesc":2997},"spring-boot-tailwind","2024-07-18T17:00:00.000Z",[14,2128],".\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":448,"text":2057},{"_id":3000,"path":3001,"title":3002,"description":3003,"meta":3004,"readingTime":3011},"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":3005,"date":3006,"published":12,"tags":3007,"author":15,"cover":3009,"video":3010,"excerpt":11,"shortDesc":3003},"java-gpt-4o","2024-07-10T17:00:00.000Z",[1942,3008,2946],"OpenAI",".\u002Fjava-gpt-4o-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FEDJLHWcFvpQ",{"minutes":393,"text":1974},{"_id":3013,"path":3014,"title":3015,"description":3016,"meta":3017,"readingTime":3023},"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":3018,"date":3019,"published":12,"tags":3020,"author":15,"cover":3021,"video":3022,"excerpt":11,"shortDesc":3016},"spring-ai-m1","2024-06-20T17:00:00.000Z",[14,1984],".\u002Fspring_ai_m1_03.png","https:\u002F\u002Fyoutube.com\u002Fembed\u002FDe9a-TaJImI",{"minutes":443,"text":2210},{"_id":3025,"path":3026,"title":3027,"description":3028,"meta":3029,"readingTime":3035},"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":3030,"date":3031,"published":12,"tags":3032,"author":15,"cover":3033,"video":11,"excerpt":11,"shortDesc":3034},"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":522,"text":1988},{"_id":3037,"path":3038,"title":3039,"description":3040,"meta":3041,"readingTime":3047},"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":3042,"date":3043,"published":12,"tags":3044,"author":15,"cover":3046,"video":11,"excerpt":11,"shortDesc":3040},"java-champion","2024-01-21T17:00:00.000Z",[1942,3045],"Meta",".\u002Fjava-champion-cover.png",{"minutes":393,"text":1974},{"_id":3049,"path":3050,"title":3051,"description":3052,"meta":3053,"readingTime":3059},"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":3054,"date":3055,"published":12,"tags":3056,"author":15,"cover":3058,"video":11,"excerpt":11,"shortDesc":3052},"developer-advocate","2024-01-15T17:00:00.000Z",[3057],"DevRel",".\u002Fdeveloper-advocate.png",{"minutes":527,"text":2275},{"_id":3061,"path":3062,"title":3063,"description":3064,"meta":3065,"readingTime":3070},"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":3066,"date":3067,"published":12,"tags":3068,"author":15,"cover":3069,"video":11,"excerpt":11,"shortDesc":3064},"happy-new-year-2024","2024-01-01T17:00:00.000Z",[3045],"photo-1701170633885-7209b1bf10ee.jpeg",{"minutes":328,"text":2734},{"_id":3072,"path":3073,"title":3074,"description":3075,"meta":3076,"readingTime":3081},"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":3077,"date":3078,"published":12,"tags":3079,"author":15,"cover":3080,"video":11,"excerpt":11,"shortDesc":3075},"2023-year-in-review","2023-12-30T17:00:00.000Z",[3045],"behnam-norouzi-f_Bo19fq4Oc-unsplash.jpg",{"minutes":368,"text":2132},{"_id":4,"path":5,"title":6,"description":7,"meta":3083,"readingTime":3085},{"slug":9,"date":10,"published":12,"tags":3084,"author":15,"cover":16,"video":11,"excerpt":11,"shortDesc":7},[14],{"minutes":619,"text":2473},{"_id":3087,"path":3088,"title":3089,"description":3090,"meta":3091,"readingTime":3097},"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":3092,"date":3093,"published":12,"tags":3094,"author":15,"cover":3095,"video":3096,"excerpt":11,"shortDesc":3090},"virtual-threads-spring-boot","2023-12-14T17:00:00.000Z",[1942,14],"spring-boot-virtual-threads.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTHavIYnlwck",{"minutes":427,"text":1959},{"_id":3099,"path":3100,"title":3101,"description":3102,"meta":3103,"readingTime":3109},"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":3104,"date":3105,"published":12,"tags":3106,"author":15,"cover":3107,"video":3108,"excerpt":11,"shortDesc":3102},"spring-boot-actuator","2023-09-17T17:00:00.000Z",[14],"spring-boot-actuator.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4OVe0MWgZ4k",{"minutes":368,"text":2132},{"_id":3111,"path":3112,"title":3113,"description":3114,"meta":3115,"readingTime":3121},"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":3116,"date":3117,"published":12,"tags":3118,"author":15,"cover":3119,"video":3120,"excerpt":11,"shortDesc":3114},"spring-jdbc-client","2023-09-11T17:00:00.000Z",[14],".\u002Fspring-jdbc-client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJBu5GibEJ4k",{"minutes":604,"text":2327},{"_id":3123,"path":3124,"title":3125,"description":3126,"meta":3127,"readingTime":3133},"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":3128,"date":3129,"published":12,"tags":3130,"author":15,"cover":3131,"video":3132,"excerpt":11,"shortDesc":3126},"rest-client-first-look","2023-09-08T17:00:00.000Z",[14],".\u002Fspring-boot-rest-client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FUDNrJAvKc0k",{"minutes":503,"text":2016},{"_id":3135,"path":3136,"title":3137,"description":3138,"meta":3139,"readingTime":3145},"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":3140,"date":3141,"published":12,"tags":3142,"author":15,"cover":3143,"video":3144,"excerpt":11,"shortDesc":3138},"pgadmin-docker-compose","2023-07-17T17:00:00.000Z",[14],".\u002FpgAdminDockerCompose.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FXDlgWyVfSMA",{"minutes":415,"text":1946},{"_id":3147,"path":3148,"title":3149,"description":3150,"meta":3151,"readingTime":3157},"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":3152,"date":3153,"published":12,"tags":3154,"author":15,"cover":3155,"video":3156,"excerpt":11,"shortDesc":3150},"graphql-schema-mapping-inspection","2023-07-13T15:00:00.000Z",[14,2310],".\u002Fgraphql-schema-inspection.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FYBPG0JbHvpY",{"minutes":427,"text":1959},{"_id":3159,"path":3160,"title":3161,"description":3162,"meta":3163,"readingTime":3170},"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":3164,"date":3165,"published":12,"tags":3166,"author":15,"cover":3168,"video":3169,"excerpt":11,"shortDesc":3162},"aws-lambda-spring-boot-3","2023-06-30T15:00:00.000Z",[14,3167],"AWS",".\u002Faws-lambda-spring-boot-3-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FGGPPkUcHleQ",{"minutes":471,"text":2003},{"_id":3172,"path":3173,"title":3174,"description":3175,"meta":3176,"readingTime":3183},"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":3177,"date":3178,"published":12,"tags":3179,"author":15,"cover":3180,"video":3181,"excerpt":11,"shortDesc":3182},"spring-http-interfaces-headers","2023-06-14T08:00:00.000Z",[2349,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":323,"text":3184},"5 min read",{"_id":3186,"path":3187,"title":3188,"description":3189,"meta":3190,"readingTime":3195},"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":3191,"date":3178,"published":12,"tags":3192,"author":15,"cover":3193,"video":3194,"excerpt":11,"shortDesc":3189},"spring-http-interfaces",[2349,14],".\u002Fhttp-interfaces-crud.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4U0hUyktpvg",{"minutes":438,"text":2069},{"_id":3197,"path":3198,"title":3199,"description":3200,"meta":3201,"readingTime":3206},"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":3202,"date":3203,"published":12,"tags":3204,"author":15,"cover":3168,"video":3205,"excerpt":11,"shortDesc":3200},"aws-lambda-java-17","2023-05-19T08:00:00.000Z",[14,3167,1942],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FbxK4GscuVgs",{"minutes":393,"text":1974},{"_id":3208,"path":3209,"title":3210,"description":3211,"meta":3212,"readingTime":3218},"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":3213,"date":3214,"published":12,"tags":3215,"author":15,"cover":3216,"video":3217,"excerpt":11,"shortDesc":3211},"spring-session-introduction","2023-05-03T08:00:00.000Z",[2469],".\u002Fspring-session-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fk62bO-W6Sb0",{"minutes":368,"text":2132},{"_id":3220,"path":3221,"title":3222,"description":3223,"meta":3224,"readingTime":3230},"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":3225,"date":3226,"published":12,"tags":3227,"author":15,"cover":3228,"video":3229,"excerpt":11,"shortDesc":3223},"spring-security-oauth2-login","2023-04-28T08:00:00.000Z",[2469],".\u002Fspring-security-oauth2-login.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fus0VjFiHogo",{"minutes":346,"text":2093},{"_id":3232,"path":3233,"title":3234,"description":3235,"meta":3236,"readingTime":3242},"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":3237,"date":3238,"published":12,"tags":3239,"author":15,"cover":3240,"video":3241,"excerpt":11,"shortDesc":3235},"spring-boot-docker-compose","2023-04-26T08:00:00.000Z",[14],".\u002Fspring-boot-docker-compose.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlS1GwdIfk0c",{"minutes":346,"text":2093},{"_id":3244,"path":3245,"title":3246,"description":3247,"meta":3248,"readingTime":3254},"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":3249,"date":3250,"published":12,"tags":3251,"author":15,"cover":3252,"video":3253,"excerpt":11,"shortDesc":3247},"multiple-spring-security-configs","2023-04-20T08:00:00.000Z",[2469],".\u002Fspring-security-multiple-configurations.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPczgM2L3w60",{"minutes":427,"text":1959},{"_id":3256,"path":3257,"title":3258,"description":3259,"meta":3260,"readingTime":3267},"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":3261,"date":3262,"published":12,"tags":3263,"author":15,"cover":3264,"video":3265,"excerpt":11,"shortDesc":3266},"graphql-client","2023-04-17T08:00:00.000Z",[14,2310],".\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":362,"text":2044},{"_id":3269,"path":3270,"title":3271,"description":3272,"meta":3273,"readingTime":3279},"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":3274,"date":3275,"published":12,"tags":3276,"author":15,"cover":3277,"video":3278,"excerpt":11,"shortDesc":3272},"virtual-threads-spring","2023-04-12T16:00:00.000Z",[14,2310],".\u002Fvirtual-threads-spring-boot.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FIs5HXJhC3jE",{"minutes":346,"text":2093},{"_id":3281,"path":3282,"title":3283,"description":3284,"meta":3285,"readingTime":3291},"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":3286,"date":3287,"published":12,"tags":3288,"author":15,"cover":3290,"video":11,"excerpt":11,"shortDesc":3284},"videotap","2023-03-31T16:00:00.000Z",[3289],"content",".\u002Fvideo-to-blogpost.png",{"minutes":328,"text":2734},{"_id":3293,"path":3294,"title":3295,"description":3296,"meta":3297,"readingTime":3303},"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":3298,"date":3299,"published":12,"tags":3300,"author":15,"cover":3301,"video":3302,"excerpt":11,"shortDesc":3296},"graphql-mutations","2023-03-20T11:00:00.000Z",[2310,14],".\u002Fgraphql-mutations.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fu3FFRq3-0CM",{"minutes":522,"text":1988},{"_id":3305,"path":3306,"title":3307,"description":3308,"meta":3309,"readingTime":3315},"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":3310,"date":3311,"published":12,"tags":3312,"author":15,"cover":3313,"video":3314,"excerpt":11,"shortDesc":3308},"spring-security-lambda-dsl","2023-03-15T09:30:00.000Z",[2469],".\u002Fspring-security-lambda-dsl.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPWnEZh_t0WI",{"minutes":373,"text":2185},{"_id":3317,"path":3318,"title":3319,"description":3320,"meta":3321,"readingTime":3328},"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":3322,"date":3323,"published":12,"tags":3324,"author":15,"cover":3327,"video":11,"excerpt":11,"shortDesc":3320},"notion-api-file-expired","2023-03-12T14:30:00.000Z",[3325,3326],"javascript","notion",".\u002Fnotion-cover-image.png",{"minutes":393,"text":1974},{"_id":3330,"path":3331,"title":3332,"description":3333,"meta":3334,"readingTime":3340},"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":3335,"date":3336,"published":12,"tags":3337,"author":15,"cover":3338,"video":3339,"excerpt":11,"shortDesc":3333},"spring-boot-crash-course","2023-03-09T11:30:00.000Z",[14,2349],".\u002Fspring-boot-crash-course-new-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FUgX5lgv4uVM",{"minutes":427,"text":1959},{"_id":3342,"path":3343,"title":3344,"description":3345,"meta":3346,"readingTime":3354},"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":3347,"date":3348,"published":12,"tags":3349,"author":15,"cover":3352,"video":3353,"excerpt":11,"shortDesc":3345},"spring-shell-intro","2023-03-02T11:00:00.000Z",[3350,3351],"spring shell","Spring boot",".\u002Fspring-shell-introduction.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F8B0IjOIzicU",{"minutes":415,"text":1946},{"_id":3356,"path":3357,"title":3358,"description":3359,"meta":3360,"readingTime":3367},"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":3361,"date":3362,"published":12,"tags":3363,"author":15,"cover":3365,"video":3366,"excerpt":11,"shortDesc":3359},"native-images-graalvm","2023-02-03T10:00:00.000Z",[270,3364],"graalvm",".\u002Fgraalvm-dynamic-new.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FRk4zfvVvRks",{"minutes":362,"text":2044},{"_id":3369,"path":3370,"title":3371,"description":3372,"meta":3373,"readingTime":3379},"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":3374,"date":3375,"published":12,"tags":3376,"author":15,"cover":3377,"video":3378,"excerpt":11,"shortDesc":3372},"graphql-custom-scalars","2023-01-31T08:00:00.000Z",[14,2310],".\u002Fgraphql-scalars-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fooknmgr4WiA",{"minutes":438,"text":2069},{"_id":3381,"path":3382,"title":3383,"description":3384,"meta":3385,"readingTime":3391},"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":3386,"date":3387,"published":12,"tags":3388,"author":15,"cover":3389,"video":3390,"excerpt":11,"shortDesc":3384},"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":368,"text":2132},{"_id":3393,"path":3394,"title":3395,"description":3396,"meta":3397,"readingTime":3404},"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":3398,"date":3399,"published":12,"tags":3400,"author":15,"cover":3403,"video":11,"excerpt":11,"shortDesc":3396},"happy-new-year-2023","2023-01-01T10:00:00.000Z",[3401,3402],"meta","goals","kostiantyn-li-pTfOKdj8whk-unsplash.jpg",{"minutes":415,"text":1946},{"_id":3406,"path":3407,"title":3408,"description":3409,"meta":3410,"readingTime":3415},"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":3411,"date":3412,"published":12,"tags":3413,"author":15,"cover":3414,"video":11,"excerpt":11,"shortDesc":3409},"2022-reflections","2022-12-29T16:00:00.000Z",[3401],".\u002Fjose-m-reyes-0GBxtiFvzXE-unsplash.jpg",{"minutes":368,"text":2132},{"_id":3417,"path":3418,"title":3419,"description":3420,"meta":3421,"readingTime":3427},"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":3422,"date":3423,"published":12,"tags":3424,"author":15,"cover":3425,"video":3426,"excerpt":11,"shortDesc":3420},"spring-proxy-bean-methods","2022-12-19T10:00:00.000Z",[14],".\u002Fproxy-bean-methods.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FVoK6-OiSPu4",{"minutes":368,"text":2132},{"_id":3429,"path":3430,"title":3431,"description":3432,"meta":3433,"readingTime":3439},"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":3434,"date":3435,"published":12,"tags":3436,"author":15,"cover":3437,"video":3438,"excerpt":11,"shortDesc":3432},"spring-response-entity","2022-12-16T12:00:00.000Z",[14],".\u002Fspring-response-entity.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FB5Zrn1Tzyqw",{"minutes":328,"text":2734},{"_id":3441,"path":3442,"title":3443,"description":3444,"meta":3445,"readingTime":3451},"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":3446,"date":3447,"published":12,"tags":3448,"author":15,"cover":3449,"video":3450,"excerpt":11,"shortDesc":3444},"aws-lambda-snapstart-spring","2022-12-02T08:00:00.000Z",[3167,14],".\u002Faws_lambda_snapstart.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FisS6m6aj_Ak",{"minutes":311,"text":3452},"4 min read",{"_id":3454,"path":3455,"title":3456,"description":3457,"meta":3458,"readingTime":3464},"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":3459,"date":3460,"published":12,"tags":3461,"author":15,"cover":3462,"video":3463,"excerpt":11,"shortDesc":3457},"spring-security-6","2022-12-01T16:00:00.000Z",[14,2469],".\u002Fspring_security_6.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTDOHbK39Oxg",{"minutes":328,"text":2734},{"_id":3466,"path":3467,"title":3468,"description":3469,"meta":3470,"readingTime":3476},"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":3471,"date":3472,"published":12,"tags":3473,"author":15,"cover":3474,"video":3475,"excerpt":11,"shortDesc":3469},"aws-lambda-java-core","2022-11-10T08:00:00.000Z",[3167,270],".\u002Faws-lambda-java-core.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkyWllXOGMWQ",{"minutes":427,"text":1959},{"_id":3478,"path":3479,"title":3480,"description":3481,"meta":3482,"readingTime":3488},"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":3483,"date":3484,"published":12,"tags":3485,"author":15,"cover":3486,"video":3487,"excerpt":11,"shortDesc":3481},"hello-aws-lambda-java","2022-11-09T08:00:00.000Z",[3167,270],".\u002Fhello-aws-lambda.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMaHxZEBRcT4",{"minutes":346,"text":2093},{"_id":3490,"path":3491,"title":3492,"description":3493,"meta":3494,"readingTime":3500},"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":3495,"date":3496,"published":12,"tags":3497,"author":15,"cover":3498,"video":3499,"excerpt":11,"shortDesc":3493},"domain-class-converter","2022-09-29T11:00:00.000Z",[14,2167],".\u002Fdomain-class-converter-thumbnail-small.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F_QBe2ZiXV-0",{"minutes":393,"text":1974},{"_id":3502,"path":3503,"title":3504,"description":3505,"meta":3506,"readingTime":3512},"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":3507,"date":3508,"published":12,"tags":3509,"author":15,"cover":3510,"video":3511,"excerpt":11,"shortDesc":3505},"spring-security-cors","2022-09-22T08:00:00.000Z",[2469],".\u002Fss-cors-thumbnail.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FHRwlT_etr60",{"minutes":427,"text":1959},{"_id":3514,"path":3515,"title":3516,"description":3517,"meta":3518,"readingTime":3524},"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":3519,"date":3520,"published":12,"tags":3521,"author":15,"cover":3522,"video":3523,"excerpt":11,"shortDesc":3517},"spring-security-jwt","2022-09-09T16:00:00.000Z",[14,2469],"spring-security-jwt-cover.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKYNR5js2cXE",{"minutes":704,"text":3525},"35 min read",{"_id":3527,"path":3528,"title":3529,"description":3530,"meta":3531,"readingTime":3538},"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":3532,"date":3533,"published":12,"tags":3534,"author":15,"cover":3536,"video":3537,"excerpt":11,"shortDesc":3530},"spring-for-graphql","2022-05-17T16:00:00.000Z",[2835,3535],"graphql",".\u002Fspring-for-graphql-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F3PCNqXrU-2g",{"minutes":756,"text":3539},"39 min read",{"_id":3541,"path":3542,"title":3543,"description":3544,"meta":3545,"readingTime":3551},"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":3546,"date":3547,"published":12,"tags":3548,"author":15,"cover":3549,"video":3550,"excerpt":11,"shortDesc":3544},"spring-data-jpa-pagination","2022-05-12T16:00:00.000Z",[2531,2167],".\u002Fspring-data-jpa-pagination-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Foq-c3D67WqM",{"minutes":604,"text":2327},{"_id":3553,"path":3554,"title":3555,"description":3556,"meta":3557,"readingTime":3563},"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":3558,"date":3559,"published":12,"tags":3560,"author":15,"cover":3561,"video":3562,"excerpt":11,"shortDesc":3556},"spring-boot-value-annotation","2022-05-11T09:30:00.000Z",[2835],".\u002Fspring-boot-value-annotation-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvLSyFktOm4g",{"minutes":368,"text":2132},{"_id":3565,"path":3566,"title":3567,"description":3568,"meta":3569,"readingTime":3574},"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":3570,"date":3571,"published":12,"tags":3572,"author":15,"cover":3573,"video":11,"excerpt":11,"shortDesc":3568},"im-joining-vmware","2022-01-24T08:00:00.000Z",[3401],".\u002Fim-joining-vmware-cover.png",{"minutes":438,"text":2069},{"_id":3576,"path":3577,"title":3578,"description":3579,"meta":3580,"readingTime":3585},"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":3581,"date":3582,"published":12,"tags":3583,"author":15,"cover":3584,"video":11,"excerpt":11,"shortDesc":3579},"happy-new-year-2022","2022-01-01T11:00:00.000Z",[3402],".\u002Fkelly-sikkema-PXl_S152jNM-unsplash.jpg",{"minutes":346,"text":2093},{"_id":3587,"path":3588,"title":3589,"description":3590,"meta":3591,"readingTime":3598},"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":3592,"date":3593,"published":12,"tags":3594,"author":15,"cover":3596,"video":3597,"excerpt":11,"shortDesc":3590},"macbook-pro-m1-max-review","2021-11-15T21:00:00.000Z",[3595],"Apple",".\u002Fmacbook-pro-review-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Ft-hEOyUnaXQ",{"minutes":368,"text":2132},{"_id":3600,"path":3601,"title":3602,"description":3603,"meta":3604,"readingTime":3610},"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":3605,"date":3606,"published":12,"tags":3607,"author":15,"cover":3608,"video":3609,"excerpt":11,"shortDesc":3603},"github-copilot-java-developers","2021-11-08T10:00:00.000Z",[270,2835],".\u002Fgithub_copilot_thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F97C3fQqzj-I",{"minutes":289,"text":3611},"2 min read",{"_id":3613,"path":3614,"title":3615,"description":3616,"meta":3617,"readingTime":3624},"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":3618,"date":3619,"published":12,"tags":3620,"author":15,"cover":3623,"video":11,"excerpt":11,"shortDesc":3616},"spring-one-2021","2021-08-30T19:45:43.204Z",[3621,2835,3622],"conference","vue",".\u002Fspring-one-2021-cover.png",{"minutes":305,"text":3625},"3 min read",{"_id":3627,"path":3628,"title":3629,"description":3630,"meta":3631,"readingTime":3637},"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":3632,"date":3633,"published":12,"tags":3634,"author":15,"cover":3635,"video":3636,"excerpt":11,"shortDesc":3630},"full-stack-java","2021-01-22T08:00:00.000Z",[270,3622],".\u002Ffull-stack-java-spring-vue.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F2G6r2f40Lps",{"minutes":527,"text":2275},{"_id":3639,"path":3640,"title":3641,"description":3642,"meta":3643,"readingTime":3648},"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":3644,"date":3645,"published":12,"tags":3646,"author":15,"cover":3647,"video":11,"excerpt":11,"shortDesc":3642},"network-throttling","2021-01-08T09:30:00.000Z",[3325,3622,270],".\u002Fnetwork-throttling-cover.png",{"minutes":415,"text":1946},{"_id":3650,"path":3651,"title":3652,"description":3653,"meta":3654,"readingTime":3659},"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":3655,"date":3656,"published":12,"tags":3657,"author":15,"cover":3658,"video":11,"excerpt":11,"shortDesc":3653},"happy-new-year-2021","2021-01-07T11:30:00.000Z",[3401],"isaac-smith-YwrdbQw0oco-unsplash.jpg",{"minutes":373,"text":2185},{"_id":3661,"path":3662,"title":3663,"description":3664,"meta":3665,"readingTime":3670},"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":3666,"date":3667,"published":12,"tags":3668,"author":15,"cover":3669,"video":11,"excerpt":11,"shortDesc":3664},"reassign-standard-in-out","2020-12-16T15:17:39.619Z",[270],".\u002Ftesting-standard-in-out-java-cover.png",{"minutes":427,"text":1959},{"_id":3672,"path":3673,"title":3674,"description":3675,"meta":3676,"readingTime":3682},"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":3677,"date":3678,"published":12,"tags":3679,"author":15,"cover":3681,"video":11,"excerpt":11,"shortDesc":3675},"interactive-learning-from-oreilly","2020-07-30T12:50:24.664Z",[270,2835,3680],"maven",".\u002Foreilly-interactive-learning-cover.png",{"minutes":311,"text":3452},{"_id":3684,"path":3685,"title":3686,"description":3687,"meta":3688,"readingTime":3694},"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":3689,"date":3690,"published":12,"tags":3691,"author":15,"cover":3692,"video":3693,"excerpt":11,"shortDesc":3687},"spring-boot-rest-service","2020-06-04T08:00:00.000Z",[14],".\u002Fspring-boot-rest-service.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMWLe1tqPmUo",{"minutes":362,"text":2044},{"_id":3696,"path":3697,"title":3698,"description":3699,"meta":3700,"readingTime":3707},"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":3701,"date":3702,"published":12,"tags":3703,"author":15,"cover":3706,"video":11,"excerpt":11,"shortDesc":3699},"deno-standard-in-out","2020-06-03T20:00:00.500Z",[3704,3705],"Deno","JavaScript",".\u002Fdeno_stdin_stdout-cover.png",{"minutes":415,"text":1946},{"_id":3709,"path":3710,"title":3711,"description":3712,"meta":3713,"readingTime":3719},"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":3714,"date":3715,"published":12,"tags":3716,"author":15,"cover":3718,"video":11,"excerpt":11,"shortDesc":3712},"hello-deno","2020-05-29T12:00:00.000Z",[3717,3325],"deno",".\u002Fhello-deno-cover.png",{"minutes":624,"text":3720},"29 min read",{"_id":3722,"path":3723,"title":3724,"description":3725,"meta":3726,"readingTime":3733},"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":3727,"date":3728,"published":12,"tags":3729,"author":15,"cover":3732,"video":11,"excerpt":11,"shortDesc":3725},"website-redesign-lessons-learned","2020-05-16T17:24:14.760Z",[3730,3622,3731],"css","gridsome",".\u002Fwebsite-redesign-lessons-learned-cover.png",{"minutes":393,"text":1974},{"_id":3735,"path":3736,"title":3737,"description":3738,"meta":3739,"readingTime":3745},"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":3740,"date":3741,"published":12,"tags":3742,"author":15,"cover":3743,"video":3744,"excerpt":11,"shortDesc":3738},"spring-unit-vs-integration-test","2020-03-09T10:00:00.000Z",[14],".\u002Funit-vs-int.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FpNiRNRgi5Ws",{"minutes":368,"text":2132},{"_id":3747,"path":3748,"title":3749,"description":3750,"meta":3751,"readingTime":3757},"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":3752,"date":3753,"published":12,"tags":3754,"author":15,"cover":3755,"video":3756,"excerpt":11,"shortDesc":3750},"vue3-ref-vs-reactive","2020-02-12T16:27:46.472Z",[3622],".\u002Fvue3-ref-vs-reactive-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FcRwG96MOHp0",{"minutes":624,"text":3720},{"_id":3759,"path":3760,"title":3761,"description":3762,"meta":3763,"readingTime":3771},"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":3764,"date":3765,"published":12,"tags":3766,"author":15,"cover":3769,"video":3770,"excerpt":11,"shortDesc":3762},"vue-3-alpha-cli-plugin","2020-01-17T13:58:29.936Z",[3767,3768],"vue3","screencast",".\u002Fstart-using-vue3-today-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fo-jiS563yI8",{"minutes":323,"text":3184},{"_id":3773,"path":3774,"title":3775,"description":3776,"meta":3777,"readingTime":3782},"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":3778,"date":3779,"published":12,"tags":3780,"author":15,"cover":3781,"video":11,"excerpt":11,"shortDesc":3776},"codemash-2020-recap","2020-01-13T14:30:00.000Z",[3621,3622],".\u002Fcodemash-recap-cover.png",{"minutes":328,"text":2734},{"_id":3784,"path":3785,"title":3786,"description":3787,"meta":3788,"readingTime":3793},"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":3789,"date":3790,"published":12,"tags":3791,"author":15,"cover":3792,"video":11,"excerpt":11,"shortDesc":3787},"codemash-2020","2020-01-09T09:00:00.000Z",[3622],".\u002Fcodemash-vue3.png",{"minutes":311,"text":3452},{"_id":3795,"path":3796,"title":3797,"description":3798,"meta":3799,"readingTime":3804},"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":3800,"date":3801,"published":12,"tags":3802,"author":15,"cover":3803,"video":11,"excerpt":11,"shortDesc":3798},"up-and-running-with-vuejs","2019-12-19T15:30:00.000Z",[3622],".\u002Fup-and-running-with-vuejs-cover.png",{"minutes":311,"text":3452},{"_id":3806,"path":3807,"title":3808,"description":3809,"meta":3810,"readingTime":3815},"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":3811,"date":3812,"published":12,"tags":3813,"author":15,"cover":3814,"video":11,"excerpt":11,"shortDesc":3809},"spring-boot-visual-studio-code","2019-11-21T11:28:07.266Z",[14,270],".\u002Fspring-boot-in-vscode.png",{"minutes":289,"text":3611},{"_id":3817,"path":3818,"title":3819,"description":3820,"meta":3821,"readingTime":3826},"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":3822,"date":3823,"published":12,"tags":3824,"author":15,"cover":3825,"video":11,"excerpt":11,"shortDesc":3820},"unit-testing-vue-part-03","2019-10-29T15:30:00.000Z",[3622],".\u002Funit-testing-vue-mastery-03-cover.jpg",{"minutes":278,"text":3827},"1 min read",{"_id":3829,"path":3830,"title":3831,"description":3832,"meta":3833,"readingTime":3838},"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":3834,"date":3835,"published":12,"tags":3836,"author":15,"cover":3837,"video":11,"excerpt":11,"shortDesc":3832},"unit-testing-vue-part-02","2019-10-15T12:33:53.592Z",[3622],".\u002Funit-testing-part-02-cover.jpg",{"minutes":278,"text":3827},{"_id":3840,"path":3841,"title":3842,"description":3843,"meta":3844,"readingTime":3849},"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":3845,"date":3846,"published":12,"tags":3847,"author":15,"cover":3848,"video":11,"excerpt":11,"shortDesc":3843},"unit-testing-vue-part-01","2019-10-01T17:00:00.000Z",[3622],"unit-testing-vue-mastery-01.png",{"minutes":278,"text":3827},{"_id":3851,"path":3852,"title":3853,"description":3854,"meta":3855,"readingTime":3861},"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":3856,"date":3857,"published":12,"tags":3858,"author":15,"cover":3859,"video":3860,"excerpt":11,"shortDesc":3854},"css-grid-generator","2019-08-08T18:13:57.456Z",[3730,3622],".\u002Fcss-grid-generator-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FZopBBEs9TPg",{"minutes":487,"text":2171},{"_id":3863,"path":3864,"title":3865,"description":3866,"meta":3867,"readingTime":3873},"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":3868,"date":3869,"published":12,"tags":3870,"author":15,"cover":3872,"video":11,"excerpt":11,"shortDesc":3866},"website-new-features-improvements","2019-07-23T11:20:30.619Z",[3871,3622,3731],"blog",".\u002Fwebsite-new-features-cover.png",{"minutes":527,"text":2275},{"_id":3875,"path":3876,"title":3877,"description":3878,"meta":3879,"readingTime":3885},"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":3880,"date":3881,"published":12,"tags":3882,"author":15,"cover":3884,"video":11,"excerpt":11,"shortDesc":3878},"vuepress-cookies","2019-06-13T10:27:46.175Z",[3622,3883],"vuepress",".\u002Fvuepress-cookies-cover.png",{"minutes":527,"text":2275},{"_id":3887,"path":3888,"title":3889,"description":3890,"meta":3891,"readingTime":3897},"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":3892,"date":3893,"published":12,"tags":3894,"author":15,"cover":3895,"video":3896,"excerpt":11,"shortDesc":3890},"triggering-events-router-vue","2019-06-05T20:13:17.445Z",[3622],".\u002Ftriggering-events-router-vue-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJwccQYpsE2Q",{"minutes":438,"text":2069},{"_id":3899,"path":3900,"title":3901,"description":3902,"meta":3903,"readingTime":3909},"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":3904,"date":3905,"published":12,"tags":3906,"author":15,"cover":3908,"video":11,"excerpt":11,"shortDesc":3902},"escape-backtick-markdown","2019-05-31T18:32:41.710Z",[3907,3871],"markdown",".\u002Fescape-backtick-markdown-cover.png",{"minutes":323,"text":3184},{"_id":3911,"path":3912,"title":3913,"description":3914,"meta":3915,"readingTime":3922},"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":3916,"date":3917,"published":12,"tags":3918,"author":15,"cover":3921,"video":11,"excerpt":11,"shortDesc":3914},"vue-cli-error","2019-05-17T15:25:36.871Z",[3622,3919,3920,3325],"npm","nodejs","vue-cli-validation-error.png",{"minutes":368,"text":2132},{"_id":3924,"path":3925,"title":3926,"description":3927,"meta":3928,"readingTime":3934},"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":3929,"date":3930,"published":12,"tags":3931,"author":15,"cover":3933,"video":11,"excerpt":11,"shortDesc":3927},"run-vue-visual-studio-code","2019-05-15T14:19:36.459Z",[3622,3919,3932,3325],"vscode",".\u002Frun-vue-visual-studio-code-cover.png",{"minutes":373,"text":2185},{"_id":3936,"path":3937,"title":3938,"description":3939,"meta":3940,"readingTime":3947},"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":3941,"date":3942,"published":12,"tags":3943,"author":15,"cover":3946,"video":11,"excerpt":11,"shortDesc":3939},"what-you-can-learn-from-live-coders","2019-05-10T18:42:50.066Z",[3944,3945],"twitch","youtube",".\u002Flive-coders-cover.png",{"minutes":393,"text":1974},{"_id":3949,"path":3950,"title":3951,"description":3952,"meta":3953,"readingTime":3959},"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":3954,"date":3955,"published":12,"tags":3956,"author":15,"cover":3958,"video":11,"excerpt":11,"shortDesc":3952},"codesandbox-custom-theme","2019-05-08T01:56:43.680Z",[3957],"codesandbox",".\u002Fcodesandbox-custom-theme-cover.png",{"minutes":311,"text":3452},{"_id":3961,"path":3962,"title":3963,"description":3964,"meta":3965,"readingTime":3970},"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":3966,"date":3967,"published":12,"tags":3968,"author":15,"cover":3969,"video":11,"excerpt":11,"shortDesc":3964},"gridsome-codesandbox-plugin","2019-05-02T15:30:43.839Z",[3622,3731,3957],".\u002Fgridsome-codesandbox-plugin-cover.png",{"minutes":566,"text":2640},{"_id":3972,"path":3973,"title":3974,"description":3975,"meta":3976,"readingTime":3981},"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":3977,"date":3978,"published":12,"tags":3979,"author":15,"cover":3980,"video":11,"excerpt":11,"shortDesc":3975},"up-and-running-with-vue","2019-04-30T19:38:42.927Z",[3622,3325],".\u002Fup-and-running-with-vue-cover.png",{"minutes":566,"text":2640},{"_id":3983,"path":3984,"title":3985,"description":3986,"meta":3987,"readingTime":3993},"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":3988,"date":3989,"published":12,"tags":3990,"author":15,"cover":3992,"video":11,"excerpt":11,"shortDesc":3986},"my-new-blog-post-workflow","2019-04-25T13:53:35.054Z",[3991],"blogging","super-snapper-zIwAchjDirM-unsplash.jpg",{"minutes":427,"text":1959},{"_id":3995,"path":3996,"title":3997,"description":3998,"meta":3999,"readingTime":4005},"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":4000,"date":4001,"published":12,"tags":4002,"author":15,"cover":4004,"video":11,"excerpt":11,"shortDesc":3998},"gridsome-blog-post-generator","2019-04-23T19:28:51.186Z",[4003],"Vue","nick-morrison-FHnnjk1Yj7Y-unsplash.jpg",{"minutes":522,"text":1988},{"_id":4007,"path":4008,"title":4009,"description":4010,"meta":4011,"readingTime":4017},"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":4012,"date":4013,"published":12,"tags":4014,"author":15,"cover":4016,"video":11,"excerpt":11,"shortDesc":4010},"npm-scripts-parallel","2019-04-19T16:51:56.537Z",[3919,4015,3325],"node",".\u002Fnpm-parallel-cover.png",{"minutes":362,"text":2044},{"_id":4019,"path":4020,"title":4021,"description":4022,"meta":4023,"readingTime":4028},"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":4024,"date":4025,"published":12,"tags":4026,"author":15,"cover":4027,"video":11,"excerpt":11,"shortDesc":4022},"vue-tips-avoid-direct-dom-manipulation","2019-04-18T20:24:32.502Z",[3622,3325],".\u002Fvue-dom.png",{"minutes":373,"text":2185},{"_id":4030,"path":4031,"title":4032,"description":4033,"meta":4034,"readingTime":4039},"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":4035,"date":4036,"published":12,"tags":4037,"author":15,"cover":4038,"video":11,"excerpt":11,"shortDesc":4033},"dont-call-it-a-comeback","2019-04-11T11:38:39.435Z",[3991],".\u002Fpersonal-blog-4b0867c8-0c1b-421c-afaf-7fc7e7986a77.png",{"minutes":373,"text":2185},{"_id":4041,"path":4042,"title":4043,"description":4044,"meta":4045,"readingTime":4050},"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":4046,"date":4047,"published":12,"tags":4048,"author":15,"cover":4049,"video":11,"excerpt":11,"shortDesc":4044},"adding-twitter-cards-to-gridsome","2019-04-09T19:21:53.368Z",[3622,3731],".\u002Ftwittter-cards-gridsome-cover-936ee6d4-220e-4800-873c-9d700fa44469.png",{"minutes":443,"text":2210},{"_id":4052,"path":4053,"title":4054,"description":4055,"meta":4056,"readingTime":4061},"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":4057,"date":4058,"published":12,"tags":4059,"author":15,"cover":4060,"video":11,"excerpt":11,"shortDesc":4055},"find-max-array-objects-javascript","2019-03-14T10:59:53.416Z",[3325],"joshua-aragon-EaB4Ml7C7fE-unsplash.jpg",{"minutes":393,"text":1974},{"_id":4063,"path":4064,"title":4065,"description":4066,"meta":4067,"readingTime":4072},"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":4068,"date":4069,"published":12,"tags":4070,"author":15,"cover":4071,"video":11,"excerpt":11,"shortDesc":4066},"spring-initializr-fresh-look","2019-03-07 17:00:00",[2835],".\u002Fspring-init-cover.png",{"minutes":311,"text":3452},{"_id":4074,"path":4075,"title":4076,"description":4077,"meta":4078,"readingTime":4083},"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":4079,"date":4080,"published":12,"tags":4081,"author":15,"cover":4082,"video":11,"excerpt":11,"shortDesc":4077},"vue-event-arguments","2019-03-04 10:00:00",[3622,3325],".\u002Fvue-event-arguments.png",{"minutes":512,"text":2825},{"_id":4085,"path":4086,"title":4087,"description":4088,"meta":4089,"readingTime":4094},"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":4090,"date":4091,"published":12,"tags":4092,"author":15,"cover":4093,"video":11,"excerpt":11,"shortDesc":4088},"node-recursive-directories","2019-02-21 08:00:00",[4015,3325],"node-multiple-directories.png",{"minutes":427,"text":1959},{"_id":4096,"path":4097,"title":4098,"description":4099,"meta":4100,"readingTime":4106},"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":4101,"date":4102,"published":12,"tags":4103,"author":15,"cover":4105,"video":11,"excerpt":11,"shortDesc":4099},"twitter-cards-meta-tags","2019-02-18 22:00:00",[4104],"html",".\u002Ftwitter-cards.png",{"minutes":373,"text":2185},{"_id":4108,"path":4109,"title":4110,"description":4111,"meta":4112,"readingTime":4117},"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":4113,"date":4114,"published":12,"tags":4115,"author":15,"cover":4116,"video":11,"excerpt":11,"shortDesc":4111},"html-template-tag","2019-02-13 22:30:00",[4104,3325,3622],".\u002Fhtml-template-cover.png",{"minutes":527,"text":2275},{"_id":4119,"path":4120,"title":4121,"description":4122,"meta":4123,"readingTime":4128},"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":4124,"date":4125,"published":12,"tags":4126,"author":15,"cover":4127,"video":11,"excerpt":11,"shortDesc":4122},"creating-your-first-npm-package","2019-02-10 11:00:00",[4015,3919,3325],".\u002Fnpm_cover.png",{"minutes":512,"text":2825},{"_id":4130,"path":4131,"title":4132,"description":4133,"meta":4134,"readingTime":4139},"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":4135,"date":4136,"published":12,"tags":4137,"author":11,"cover":4138,"video":11,"excerpt":11,"shortDesc":4133},"hello-gridsome","2019-01-31 10:00:00",[3622],".\u002Fgridsome.png",{"minutes":393,"text":1974},{"_id":4141,"path":4142,"title":4143,"description":4143,"meta":4144,"readingTime":4149},"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":4145,"date":4146,"published":12,"tags":4147,"author":11,"cover":4148,"video":11,"excerpt":11,"shortDesc":4143},"happy-new-year-my-2019-goals","2019-01-01T08:38:10-05:00",[3402],".\u002F2019-cover.png",{"minutes":346,"text":2093},{"_id":4151,"path":4152,"title":4153,"description":4153,"meta":4154,"readingTime":4159},"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":4155,"date":4156,"published":12,"tags":4157,"author":11,"cover":4158,"video":11,"excerpt":11,"shortDesc":4153},"my-2018-year-in-review","2018-12-24T08:52:12-05:00",[3402],".\u002F2018-cover.png",{"minutes":346,"text":2093},{"_id":4161,"path":4162,"title":4163,"description":4163,"meta":4164,"readingTime":4171},"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":4165,"date":4166,"published":12,"tags":4167,"author":11,"cover":4170,"video":11,"excerpt":11,"shortDesc":4163},"macbook-pro-setup-my-setup-with-detailed-instructions","2018-12-21T14:17:22-05:00",[4168,4169],"mac","web development",".\u002Ftobias-lystad-606045-unsplash-1024x683.jpg",{"minutes":503,"text":2016},{"_id":4173,"path":4174,"title":4175,"description":4175,"meta":4176,"readingTime":4182},"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":4177,"date":4178,"published":12,"tags":4179,"author":11,"cover":4181,"video":11,"excerpt":11,"shortDesc":4175},"new-course-getting-started-with-spring-boot-2","2018-11-20T12:39:53-05:00",[4180],"courses",".\u002Fteachable_course_graphic-760x428.png",{"minutes":305,"text":3625},{"_id":4184,"path":4185,"title":4186,"description":4186,"meta":4187,"readingTime":4193},"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":4188,"date":4189,"published":12,"tags":4190,"author":11,"cover":4192,"video":11,"excerpt":11,"shortDesc":4186},"cleveland-women-in-tech-conference-recap","2018-11-06T11:59:51-05:00",[3621,4191],"presentation",".\u002FIMG_4467.jpg",{"minutes":346,"text":2093},{"_id":4195,"path":4196,"title":4197,"description":4197,"meta":4198,"readingTime":4203},"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":4199,"date":4200,"published":12,"tags":4201,"author":11,"cover":4202,"video":11,"excerpt":11,"shortDesc":4197},"cleveland-women-in-tech-presentation","2018-11-05T06:50:29-05:00",[3621,4191],".\u002Fmerherstory-cover.png",{"minutes":305,"text":3625},{"_id":4205,"path":4206,"title":4207,"description":4207,"meta":4208,"readingTime":4214},"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":4209,"date":4210,"published":12,"tags":4211,"author":11,"cover":4213,"video":11,"excerpt":11,"shortDesc":4207},"i-am-joining-tech-elevator","2018-09-07T01:00:58-04:00",[4212],"Tech Elevator",".\u002FStacked-Logo-760x202.jpg",{"minutes":323,"text":3184},{"_id":4216,"path":4217,"title":4218,"description":4218,"meta":4219,"readingTime":4225},"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":4220,"date":4221,"published":12,"tags":4222,"author":11,"cover":4223,"video":4224,"excerpt":11,"shortDesc":4218},"java-development-2018","2018-04-25T06:39:22-04:00",[270],".\u002Fjava_development_in_2018-760x428","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMLXj0hd3usk",{"minutes":311,"text":3452},{"_id":4227,"path":4228,"title":4229,"description":4229,"meta":4230,"readingTime":4235},"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":4231,"date":4232,"published":12,"tags":4233,"author":11,"cover":4234,"video":11,"excerpt":11,"shortDesc":4229},"what-is-new-spring-boot-2","2018-03-01T06:47:52-05:00",[270,2835],".\u002Fpexels-photo-273238-2-760x507.jpeg",{"minutes":551,"text":2118},{"_id":4237,"path":4238,"title":4239,"description":4239,"meta":4240,"readingTime":4244},"blog\u002Fblog\u002F2018\u002F01\u002F01\u002Fmy-2018-goals.md","\u002Fblog\u002F2018\u002F01\u002F01\u002Fmy-2018-goals","Happy New Year!!! My 2018 Goals",{"slug":4241,"date":4242,"published":12,"tags":4243,"author":11,"cover":4158,"video":11,"excerpt":11,"shortDesc":4239},"my-2018-goals","2018-01-01T08:50:40-05:00",[3402],{"minutes":415,"text":1946},{"_id":4246,"path":4247,"title":4248,"description":4248,"meta":4249,"readingTime":4254},"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":4250,"date":4251,"published":12,"tags":4252,"author":11,"cover":4253,"video":11,"excerpt":11,"shortDesc":4248},"my-2017-year-in-review","2017-12-29T09:14:08-05:00",[3402],".\u002Fpexels-photo-282919-760x571.jpeg",{"minutes":311,"text":3452},{"_id":4256,"path":4257,"title":4258,"description":4258,"meta":4259,"readingTime":4264},"blog\u002Fblog\u002F2017\u002F12\u002F08\u002Fgetting-started-with-java.md","\u002Fblog\u002F2017\u002F12\u002F08\u002Fgetting-started-with-java","Getting Started with Java course",{"slug":4260,"date":4261,"published":12,"tags":4262,"author":11,"cover":4263,"video":11,"excerpt":11,"shortDesc":4258},"getting-started-with-java","2017-12-08T09:00:23-05:00",[270],".\u002Fapple-computer-desk-18105.jpg",{"minutes":328,"text":2734},{"_id":4266,"path":4267,"title":4268,"description":4268,"meta":4269,"readingTime":4274},"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":4270,"date":4271,"published":12,"tags":4272,"author":11,"cover":4273,"video":11,"excerpt":11,"shortDesc":4268},"angular-4-java-developers-course-now-live","2017-11-08T16:15:32-05:00",[270,2835],".\u002Fgreetings_java_hipsters-760x525.png",{"minutes":328,"text":2734},{"_id":4276,"path":4277,"title":4278,"description":4278,"meta":4279,"readingTime":4285},"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":4280,"date":4281,"published":12,"tags":4282,"author":11,"cover":4284,"video":11,"excerpt":11,"shortDesc":4278},"compile-groovy-java-gradle-build","2017-10-04T08:32:40-04:00",[4283],"groovy",".\u002F614px-Groovy-logo.svg_-e1459476180685.png",{"minutes":362,"text":2044},{"_id":4287,"path":4288,"title":4289,"description":4289,"meta":4290,"readingTime":4295},"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":4291,"date":4292,"published":12,"tags":4293,"author":11,"cover":4294,"video":11,"excerpt":11,"shortDesc":4289},"get-hot-java-9","2017-09-22T08:21:00-04:00",[270],".\u002F2017-09-22_07-39-27-760x504.png",{"minutes":311,"text":3452},{"_id":4297,"path":4298,"title":4299,"description":4299,"meta":4300,"readingTime":4306},"blog\u002Fblog\u002F2017\u002F09\u002F11\u002Fmonolithic-vs-microservices.md","\u002Fblog\u002F2017\u002F09\u002F11\u002Fmonolithic-vs-microservices","When to use Microservices over Monolithic Architecture",{"slug":4301,"date":4302,"published":12,"tags":4303,"author":11,"cover":4305,"video":11,"excerpt":11,"shortDesc":4299},"monolithic-vs-microservices","2017-09-11T08:30:19-04:00",[4304,2835],"Software Development",".\u002Fpexels-photo-325229-760x266.jpeg",{"minutes":323,"text":3184},{"_id":4308,"path":4309,"title":4310,"description":4310,"meta":4311,"readingTime":4317},"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":4312,"date":4313,"published":12,"tags":4314,"author":11,"cover":4316,"video":11,"excerpt":11,"shortDesc":4310},"upgrade-new-angular-command-line-interface-cli-1-3-release","2017-09-06T09:07:30-04:00",[4315],"Angular",".\u002Fpexels-photo-247791-1024x562.png",{"minutes":323,"text":3184},{"_id":4319,"path":4320,"title":4321,"description":4321,"meta":4322,"readingTime":4327},"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":4323,"date":4324,"published":12,"tags":4325,"author":11,"cover":4326,"video":11,"excerpt":11,"shortDesc":4321},"groovy-happens-assign-biginteger-integer","2017-08-30T07:39:40-04:00",[4283,270],".\u002Fcodes-coding.jpg",{"minutes":305,"text":3625},{"_id":4329,"path":4330,"title":4331,"description":4331,"meta":4332,"readingTime":4337},"blog\u002Fblog\u002F2017\u002F08\u002F28\u002Fusing-jhipster-development-mode.md","\u002Fblog\u002F2017\u002F08\u002F28\u002Fusing-jhipster-development-mode","Using JHipster in Development mode",{"slug":4333,"date":4334,"published":12,"tags":4335,"author":11,"cover":4336,"video":11,"excerpt":11,"shortDesc":4331},"using-jhipster-development-mode","2017-08-28T09:30:30-04:00",[4315,2835],".\u002Fwallpaper-001-2560x1440-760x428.png",{"minutes":305,"text":3625},{"_id":4339,"path":4340,"title":4341,"description":4341,"meta":4342,"readingTime":4347},"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":4343,"date":4344,"published":12,"tags":4345,"author":11,"cover":4346,"video":11,"excerpt":11,"shortDesc":4341},"multiple-dependencies-spring-cli","2017-08-16T08:30:40-04:00",[2835],".\u002Fpexels-photo-205421-760x506.jpeg",{"minutes":323,"text":3184},{"_id":4349,"path":4350,"title":4351,"description":4351,"meta":4352,"readingTime":4357},"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":4353,"date":4354,"published":12,"tags":4355,"author":11,"cover":4356,"video":11,"excerpt":11,"shortDesc":4351},"3-youtube-channels-java-developers","2017-08-04T13:14:00-04:00",[270,2835],".\u002Fpexels-photo-760x506.jpg",{"minutes":278,"text":3827},{"_id":4359,"path":4360,"title":4361,"description":4361,"meta":4362,"readingTime":4367},"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":4363,"date":4364,"published":12,"tags":4365,"author":11,"cover":4366,"video":11,"excerpt":11,"shortDesc":4361},"spring-data-aggregate-functions-repository","2017-07-31T08:48:35-04:00",[2835],".\u002Fpexels-photo-374074-760x506.jpeg",{"minutes":368,"text":2132},{"_id":4369,"path":4370,"title":4371,"description":4372,"meta":4373,"readingTime":4378},"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":4374,"date":4375,"published":12,"tags":4376,"author":11,"cover":4377,"video":11,"excerpt":11,"shortDesc":4372},"use-hikaricp-next-spring-boot-project","2017-07-26T08:16:50-04:00",[270,2835],".\u002Fpexels-photo-169976-760x506.jpeg",{"minutes":346,"text":2093},{"_id":4380,"path":4381,"title":4382,"description":4382,"meta":4383,"readingTime":4388},"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":4384,"date":4385,"published":12,"tags":4386,"author":11,"cover":4387,"video":11,"excerpt":11,"shortDesc":4382},"spring-boot-application-failed-start","2017-07-24T09:55:33-04:00",[270,2835],".\u002Fpexels-photo-205316-760x506.png",{"minutes":346,"text":2093},{"_id":4390,"path":4391,"title":4392,"description":4392,"meta":4393,"readingTime":4399},"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":4394,"date":4395,"published":12,"tags":4396,"author":11,"cover":4397,"video":4398,"excerpt":11,"shortDesc":4392},"read-json-data-spring-boot-write-database","2017-07-05T12:00:27-04:00",[2835],".\u002Fpexels-photo-374899-760x506.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FrGdKmF2UzSc",{"minutes":443,"text":2210},{"_id":4401,"path":4402,"title":4403,"description":4403,"meta":4404,"readingTime":4409},"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":4405,"date":4406,"published":12,"tags":4407,"author":11,"cover":4408,"video":11,"excerpt":11,"shortDesc":4403},"multiple-request-mappings-spring-boot","2017-07-03T08:30:50-04:00",[2835],".\u002Fpexels-photo-450035-760x506.jpeg",{"minutes":323,"text":3184},{"_id":4411,"path":4412,"title":4413,"description":4413,"meta":4414,"readingTime":4419},"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":4415,"date":4416,"published":12,"tags":4417,"author":11,"cover":4418,"video":11,"excerpt":11,"shortDesc":4413},"9-presentations-can-watch-right-now-learn-java-9","2017-06-30T08:00:48-04:00",[270],".\u002Fcoding.jpg",{"minutes":368,"text":2132},{"_id":4421,"path":4422,"title":4423,"description":4423,"meta":4424,"readingTime":4429},"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":4425,"date":4426,"published":12,"tags":4427,"author":11,"cover":4428,"video":11,"excerpt":11,"shortDesc":4423},"deploying-war-application-server-spring-boot","2017-06-28T09:14:15-04:00",[2835],".\u002Fpexels-photo-292627-760x506.jpeg",{"minutes":393,"text":1974},{"_id":4431,"path":4432,"title":4433,"description":4434,"meta":4435,"readingTime":4440},"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":4436,"date":4437,"published":12,"tags":4438,"author":11,"cover":4439,"video":11,"excerpt":11,"shortDesc":4434},"spring-boot-configuration-using-yaml","2017-06-26T09:00:06-04:00",[2835],".\u002Femile-perron-190221-760x428.jpg",{"minutes":362,"text":2044},{"_id":4442,"path":4443,"title":4444,"description":4444,"meta":4445,"readingTime":4450},"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":4446,"date":4447,"published":12,"tags":4448,"author":11,"cover":4449,"video":11,"excerpt":11,"shortDesc":4444},"building-angular-spring-boot","2017-06-23T08:00:27-04:00",[4315,2835],".\u002Fimac-apple-mockup-app-38544-760x505.jpeg",{"minutes":346,"text":2093},{"_id":4452,"path":4453,"title":4454,"description":4454,"meta":4455,"readingTime":4460},"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":4456,"date":4457,"published":12,"tags":4458,"author":11,"cover":4459,"video":11,"excerpt":11,"shortDesc":4454},"spring-boot-properties-setting-locale","2017-06-21T08:19:09-04:00",[2835],".\u002Fandre-benz-256762-760x507.jpg",{"minutes":323,"text":3184},{"_id":4462,"path":4463,"title":4464,"description":4464,"meta":4465,"readingTime":4470},"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":4466,"date":4467,"published":12,"tags":4468,"author":11,"cover":4469,"video":11,"excerpt":11,"shortDesc":4464},"spring-boot-2-0-m2-now-available","2017-06-19T08:30:53-04:00",[2835],".\u002Fpexels-photo-92904-760x507.jpeg",{"minutes":305,"text":3625},{"_id":4472,"path":4473,"title":4474,"description":4474,"meta":4475,"readingTime":4481},"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":4476,"date":4477,"published":12,"tags":4478,"author":11,"cover":4480,"video":11,"excerpt":11,"shortDesc":4474},"migrating-grails-2-x-applications-grails-3-x","2017-06-16T08:53:25-04:00",[4479],"grails",".\u002Fpexels-photo-436784-760x507.jpeg",{"minutes":373,"text":2185},{"_id":4483,"path":4484,"title":4485,"description":4485,"meta":4486,"readingTime":4490},"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":4487,"date":4488,"published":12,"tags":4489,"author":11,"cover":4366,"video":11,"excerpt":11,"shortDesc":4485},"spring-boot-defining-requestmapping-handler-methods","2017-06-14T08:36:35-04:00",[2835],{"minutes":362,"text":2044},{"_id":4492,"path":4493,"title":4494,"description":4494,"meta":4495,"readingTime":4500},"blog\u002Fblog\u002F2017\u002F06\u002F12\u002Fbootstrapping-angular-application.md","\u002Fblog\u002F2017\u002F06\u002F12\u002Fbootstrapping-angular-application","Bootstrapping your Angular Application",{"slug":4496,"date":4497,"published":12,"tags":4498,"author":11,"cover":4499,"video":11,"excerpt":11,"shortDesc":4494},"bootstrapping-angular-application","2017-06-12T11:40:51-04:00",[4315],".\u002Fpexels-photo-177598-760x506.jpeg",{"minutes":393,"text":1974},{"_id":4502,"path":4503,"title":4504,"description":4504,"meta":4505,"readingTime":4510},"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":4506,"date":4507,"published":12,"tags":4508,"author":11,"cover":4509,"video":11,"excerpt":11,"shortDesc":4504},"angular-forms-clear-input-field","2017-06-07T09:50:47-04:00",[4315],".\u002Fangular-forms.png",{"minutes":373,"text":2185},{"_id":4512,"path":4513,"title":4514,"description":4514,"meta":4515,"readingTime":4520},"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":4516,"date":4517,"published":12,"tags":4518,"author":11,"cover":4519,"video":11,"excerpt":11,"shortDesc":4514},"getting-started-angular-cli","2017-06-05T10:34:50-04:00",[4315],".\u002F2017-06-05_09-34-25-760x226.png",{"minutes":328,"text":2734},{"_id":4522,"path":4523,"title":4524,"description":4524,"meta":4525,"readingTime":4530},"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":4526,"date":4527,"published":12,"tags":4528,"author":11,"cover":4529,"video":11,"excerpt":11,"shortDesc":4524},"spring-boot-1-question-students-asking-right-now","2017-05-31T08:48:35-04:00",[402],".\u002Fpexels-photo-92028-760x599.jpeg",{"minutes":373,"text":2185},{"_id":4532,"path":4533,"title":4534,"description":4534,"meta":4535,"readingTime":4541},"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":4536,"date":4537,"published":12,"tags":4538,"author":11,"cover":4540,"video":11,"excerpt":11,"shortDesc":4534},"so-you-want-to-create-an-online-course","2017-05-26T12:34:08-04:00",[4539],"course",".\u002Fcarl-heyerdahl-181868-1-760x507.jpg",{"minutes":512,"text":2825},{"_id":4543,"path":4544,"title":4545,"description":4545,"meta":4546,"readingTime":4551},"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":4547,"date":4548,"published":12,"tags":4549,"author":11,"cover":4550,"video":11,"excerpt":11,"shortDesc":4545},"contributing-groovy-website","2017-05-24T08:12:01-04:00",[4283],".\u002F2017-05-23_19-50-54-760x462.png",{"minutes":427,"text":1959},{"_id":4553,"path":4554,"title":4555,"description":4555,"meta":4556,"readingTime":4560},"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":4557,"date":4558,"published":12,"tags":4559,"author":11,"cover":4336,"video":11,"excerpt":11,"shortDesc":4555},"checking-upgrading-jhipster-version","2017-05-22T09:00:26-04:00",[4315,2835],{"minutes":305,"text":3625},{"_id":4562,"path":4563,"title":4564,"description":4564,"meta":4565,"readingTime":4569},"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":4566,"date":4567,"published":12,"tags":4568,"author":11,"cover":4469,"video":11,"excerpt":11,"shortDesc":4564},"spring-boot-2-first-release","2017-05-19T10:15:39-04:00",[2835],{"minutes":373,"text":2185},{"_id":4571,"path":4572,"title":4573,"description":4574,"meta":4575,"readingTime":4580},"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":4576,"date":4577,"published":12,"tags":4578,"author":11,"cover":4579,"video":11,"excerpt":11,"shortDesc":4574},"spring-component-vs-bean","2017-05-17T09:00:06-04:00",[2531,14],".\u002Fbean-vs-component.png",{"minutes":427,"text":1959},{"_id":4582,"path":4583,"title":4584,"description":4585,"meta":4586,"readingTime":4591},"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":4587,"date":4588,"published":12,"tags":4589,"author":11,"cover":4590,"video":11,"excerpt":11,"shortDesc":4585},"getting-started-spring-boot-actuator","2017-05-15T08:00:22-04:00",[2835],".\u002Fpexels-photo-169573-760x507.jpeg",{"minutes":346,"text":2093},{"_id":4593,"path":4594,"title":4595,"description":4595,"meta":4596,"readingTime":4601},"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":4597,"date":4598,"published":12,"tags":4599,"author":11,"cover":4600,"video":11,"excerpt":11,"shortDesc":4595},"6-courses-itunes-u","2017-05-12T08:00:52-04:00",[4304],".\u002F2017-05-11_16-07-03-760x399.png",{"minutes":305,"text":3625},{"_id":4603,"path":4604,"title":4605,"description":4605,"meta":4606,"readingTime":4610},"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":4607,"date":4608,"published":12,"tags":4609,"author":11,"cover":4439,"video":11,"excerpt":11,"shortDesc":4605},"spring-boot-moving-tomcat-jetty","2017-05-10T09:00:06-04:00",[2835],{"minutes":346,"text":2093},{"_id":4612,"path":4613,"title":4614,"description":4614,"meta":4615,"readingTime":4620},"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":4616,"date":4617,"published":12,"tags":4618,"author":11,"cover":4619,"video":11,"excerpt":11,"shortDesc":4614},"enable-new-youtube-dark-theme-right-now","2017-05-08T08:00:50-04:00",[2040],".\u002F2017-05-04_23-05-38-760x367.png",{"minutes":278,"text":3827},{"_id":4622,"path":4623,"title":4624,"description":4624,"meta":4625,"readingTime":4630},"blog\u002Fblog\u002F2017\u002F05\u002F05\u002Fmake-weakness-strength.md","\u002Fblog\u002F2017\u002F05\u002F05\u002Fmake-weakness-strength","How to Make your weakness your strength",{"slug":4626,"date":4627,"published":12,"tags":4628,"author":11,"cover":4629,"video":11,"excerpt":11,"shortDesc":4624},"make-weakness-strength","2017-05-05T08:00:15-04:00",[4304],".\u002Flucas-rosas-98304-760x507.jpg",{"minutes":368,"text":2132},{"_id":4632,"path":4633,"title":4634,"description":4634,"meta":4635,"readingTime":4640},"blog\u002Fblog\u002F2017\u002F05\u002F03\u002Fspring-angular-applications.md","\u002Fblog\u002F2017\u002F05\u002F03\u002Fspring-angular-applications","How to start writing Angular & Spring Applications",{"slug":4636,"date":4637,"published":12,"tags":4638,"author":11,"cover":4639,"video":11,"excerpt":11,"shortDesc":4634},"spring-angular-applications","2017-05-03T09:00:37-04:00",[4315,2835],".\u002Fcarl-heyerdahl-181868-760x507.jpg",{"minutes":393,"text":1974},{"_id":4642,"path":4643,"title":4644,"description":4645,"meta":4646,"readingTime":4651},"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":4647,"date":4648,"published":12,"tags":4649,"author":11,"cover":4650,"video":11,"excerpt":11,"shortDesc":4645},"add-validation-spring-entities","2017-05-01T16:37:13-04:00",[2835],".\u002Fluis-llerena-14779-760x507.jpg",{"minutes":487,"text":2171},{"_id":4653,"path":4654,"title":4655,"description":4655,"meta":4656,"readingTime":4661},"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":4657,"date":4658,"published":12,"tags":4659,"author":11,"cover":4660,"video":11,"excerpt":11,"shortDesc":4655},"every-developer-start-blog-right-now","2017-04-28T09:15:56-04:00",[3991],".\u002Fken-tomita-239357-760x507.jpg",{"minutes":328,"text":2734},{"_id":4663,"path":4664,"title":4665,"description":4665,"meta":4666,"readingTime":4671},"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":4667,"date":4668,"published":12,"tags":4669,"author":11,"cover":4670,"video":11,"excerpt":11,"shortDesc":4665},"what-is-going-wrong-on-the-spring-boot-view-layer","2017-04-26T09:02:28-04:00",[2835],".\u002Fview_layer-760x760.png",{"minutes":368,"text":2132},{"_id":4673,"path":4674,"title":4675,"description":4675,"meta":4676,"readingTime":4681},"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":4677,"date":4678,"published":12,"tags":4679,"author":11,"cover":4680,"video":11,"excerpt":11,"shortDesc":4675},"spring-boot-2-0-roadmap","2017-04-24T08:00:05-04:00",[2835],".\u002Fannie-spratt-161511-760x1140.jpg",{"minutes":328,"text":2734},{"_id":4683,"path":4684,"title":4685,"description":4685,"meta":4686,"readingTime":4692},"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":4687,"date":4688,"published":12,"tags":4689,"author":11,"cover":4691,"video":11,"excerpt":11,"shortDesc":4685},"how-do-you-define-success","2017-04-21T10:00:07-04:00",[4690],"programming",".\u002Fwilliam-stitt-224301-760x1140.jpg",{"minutes":328,"text":2734},{"_id":4694,"path":4695,"title":4696,"description":4696,"meta":4697,"readingTime":4701},"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":4698,"date":4699,"published":12,"tags":4700,"author":11,"cover":4336,"video":11,"excerpt":11,"shortDesc":4696},"what-is-jhipster","2017-04-19T09:38:31-04:00",[270,2835],{"minutes":311,"text":3452},{"_id":4703,"path":4704,"title":4705,"description":4705,"meta":4706,"readingTime":4711},"blog\u002Fblog\u002F2017\u002F04\u002F17\u002Fjava-9.md","\u002Fblog\u002F2017\u002F04\u002F17\u002Fjava-9","Getting Started with Java 9",{"slug":4707,"date":4708,"published":12,"tags":4709,"author":11,"cover":4710,"video":11,"excerpt":11,"shortDesc":4705},"java-9","2017-04-17T11:05:58-04:00",[270],".\u002FJava9-760x428.png",{"minutes":311,"text":3452},{"_id":4713,"path":4714,"title":4715,"description":4716,"meta":4717,"readingTime":4722},"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":4718,"date":4719,"published":12,"tags":4720,"author":11,"cover":4721,"video":11,"excerpt":11,"shortDesc":4716},"inserting-a-groovy-date-into-a-time-stamp-column","2017-04-10T08:00:06-04:00",[4283],".\u002FGroovyDate-760x428.png",{"minutes":311,"text":3452},{"_id":4724,"path":4725,"title":4726,"description":4727,"meta":4728,"readingTime":4734},"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":4729,"date":4730,"published":12,"tags":4731,"author":11,"cover":4732,"video":4733,"excerpt":11,"shortDesc":4727},"spring-boot-command-line-runner","2017-04-07T08:00:43-04:00",[2835],".\u002Fspring-boot-command-line-runner-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FgBN8x4yN5Ks",{"minutes":443,"text":2210},{"_id":4736,"path":4737,"title":4738,"description":4739,"meta":4740,"readingTime":4745},"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":4741,"date":4742,"published":12,"tags":4743,"author":11,"cover":4744,"video":11,"excerpt":11,"shortDesc":4739},"java-equals","2017-04-05T08:00:50-04:00",[270],".\u002Fjava_equals-760x428.png",{"minutes":373,"text":2185},{"_id":4747,"path":4748,"title":4749,"description":4749,"meta":4750,"readingTime":4755},"blog\u002Fblog\u002F2017\u002F04\u002F03\u002F2000-subscribers-youtube.md","\u002Fblog\u002F2017\u002F04\u002F03\u002F2000-subscribers-youtube","2,000 Subscribers on YouTube!!",{"slug":4751,"date":4752,"published":12,"tags":4753,"author":11,"cover":4754,"video":11,"excerpt":11,"shortDesc":4749},"2000-subscribers-youtube","2017-04-03T08:30:34-04:00",[2040],".\u002F200-subscribers.jpg",{"minutes":278,"text":3827},{"_id":4757,"path":4758,"title":4759,"description":4760,"meta":4761,"readingTime":4766},"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":4762,"date":4763,"published":12,"tags":4764,"author":11,"cover":4765,"video":11,"excerpt":11,"shortDesc":4760},"using-project-lombok-spring-boot","2017-03-31T08:00:38-04:00",[270,2835],".\u002F2350-760x507.jpg",{"minutes":522,"text":1988},{"_id":4768,"path":4769,"title":4770,"description":4771,"meta":4772,"readingTime":4777},"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":4773,"date":4774,"published":12,"tags":4775,"author":11,"cover":4776,"video":11,"excerpt":11,"shortDesc":4771},"spring-stereotype-annotations","2017-03-27T08:00:15-04:00",[2835],".\u002Fstereotype_annotations.png",{"minutes":487,"text":2171},{"_id":4779,"path":4780,"title":4781,"description":4781,"meta":4782,"readingTime":4787},"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":4783,"date":4784,"published":12,"tags":4785,"author":11,"cover":4786,"video":11,"excerpt":11,"shortDesc":4781},"spring-boot-convention-based-error-pages","2017-03-24T08:00:33-04:00",[2835],".\u002Fcustom-error-cover.jpg",{"minutes":346,"text":2093},{"_id":4789,"path":4790,"title":4791,"description":4791,"meta":4792,"readingTime":4797},"blog\u002Fblog\u002F2017\u002F03\u002F22\u002Fspring-boot-entity-scan.md","\u002Fblog\u002F2017\u002F03\u002F22\u002Fspring-boot-entity-scan","Spring Boot Entity Scan",{"slug":4793,"date":4794,"published":12,"tags":4795,"author":11,"cover":4796,"video":11,"excerpt":11,"shortDesc":4791},"spring-boot-entity-scan","2017-03-22T08:00:44-04:00",[2835],".\u002Fentity-scan.jpg",{"minutes":362,"text":2044},{"_id":4799,"path":4800,"title":4801,"description":4802,"meta":4803,"readingTime":4809},"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":4804,"date":4805,"published":12,"tags":4806,"author":11,"cover":4808,"video":11,"excerpt":11,"shortDesc":4802},"made-20000-sleep","2016-10-04T20:26:59-04:00",[4807],"udemy",".\u002Fudemy_milestone_20k_2-1024x688.png",{"minutes":328,"text":2734},{"_id":4811,"path":4812,"title":4813,"description":4814,"meta":4815,"readingTime":4820},"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":4816,"date":4817,"published":12,"tags":4818,"author":11,"cover":4819,"video":11,"excerpt":11,"shortDesc":4814},"tech-elevator-meetup-summary","2016-09-20T08:00:53-04:00",[4690],".\u002Fhighres_454339592.jpeg",{"minutes":289,"text":3611},{"_id":4822,"path":4823,"title":4824,"description":4825,"meta":4826,"readingTime":4831},"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":4827,"date":4828,"published":12,"tags":4829,"author":11,"cover":4830,"video":11,"excerpt":11,"shortDesc":4825},"spring-mvc-get-controller-method-name","2016-01-14T16:27:22-05:00",[270,2835],".\u002Fcontroller-cover.jpg",{"minutes":415,"text":1946},{"_id":4833,"path":4834,"title":4835,"description":4836,"meta":4837,"readingTime":4842},"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":4838,"date":4839,"published":12,"tags":4840,"author":11,"cover":4841,"video":11,"excerpt":11,"shortDesc":4836},"sending-async-emails-in-spring","2016-01-13T10:30:20-05:00",[270,2835],".\u002Femail-cover.jpg",{"minutes":368,"text":2132},{"_id":4844,"path":4845,"title":4846,"description":4846,"meta":4847,"readingTime":4852},"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":4848,"date":4849,"published":12,"tags":4850,"author":11,"cover":4851,"video":11,"excerpt":11,"shortDesc":4846},"using-gorm-in-spring-boot","2015-11-25T11:43:13-05:00",[4283,2835,270],".\u002Fadult-back-view-data-1181345.jpg",{"minutes":532,"text":2497},{"_id":4854,"path":4855,"title":4856,"description":4856,"meta":4857,"readingTime":4862},"blog\u002Fblog\u002F2015\u002F10\u002F23\u002Fspring-boot-application-annotation.md","\u002Fblog\u002F2015\u002F10\u002F23\u002Fspring-boot-application-annotation","Spring Boot Application Annotation",{"slug":4858,"date":4859,"published":12,"tags":4860,"author":11,"cover":4861,"video":11,"excerpt":11,"shortDesc":4856},"spring-boot-application-annotation","2015-10-23T09:08:37-04:00",[270,2835],".\u002Faccess-code-connection-1181467.jpg",{"minutes":393,"text":1974},{"_id":4864,"path":4865,"title":4866,"description":4867,"meta":4868,"readingTime":4874},"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":4869,"date":4870,"published":12,"tags":4871,"author":11,"cover":4873,"video":11,"excerpt":11,"shortDesc":4867},"ready-player-one-review","2015-04-24T17:00:00.000Z",[4872],"Books","bookcase-books-bookshelves-159711.jpg",{"minutes":323,"text":3184},{"_id":4876,"path":4877,"title":4878,"description":4879,"meta":4880,"readingTime":4885},"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":4881,"date":4882,"published":12,"tags":4883,"author":11,"cover":4884,"video":11,"excerpt":11,"shortDesc":4879},"sql-server-exception-statement-not-return-result-set","2015-02-05T11:48:18-05:00",[4283,402],".\u002Fdata-cover.jpg",{"minutes":323,"text":3184},{"_id":4887,"path":4888,"title":4889,"description":4890,"meta":4891,"readingTime":4895},"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":4892,"date":4893,"published":12,"tags":4894,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4890},"gravatars-on-a-grails-application","2014-04-08T14:04:00-04:00",[4479,4283],{"minutes":328,"text":2734},{"_id":4897,"path":4898,"title":4899,"description":4900,"meta":4901,"readingTime":4905},"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":4902,"date":4903,"published":12,"tags":4904,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4900},"grails-generating-links-in-your-domain-class","2014-03-31T09:03:00-04:00",[4479],{"minutes":346,"text":2093},{"_id":4907,"path":4908,"title":4909,"description":4910,"meta":4911,"readingTime":4915},"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":4912,"date":4913,"published":12,"tags":4914,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4910},"grails-spring-security-plugin-logout-postonly-setting","2014-02-25T13:02:00-05:00",[4479],{"minutes":305,"text":3625},{"_id":4917,"path":4918,"title":4919,"description":4919,"meta":4920,"readingTime":4926},"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":4921,"date":4922,"published":12,"tags":4923,"author":11,"cover":4924,"video":4925,"excerpt":11,"shortDesc":4919},"creating-and-testing-your-first-grails-tag-library","2014-02-23T07:02:00-05",[4479,4283],".\u002Ftesting-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvZ_7FfML9Xg",{"minutes":373,"text":2185},{"_id":4928,"path":4929,"title":4930,"description":4930,"meta":4931,"readingTime":4935},"blog\u002Fblog\u002F2013\u002F08\u002F27\u002Fgrails-mysql-boolean-gotcha.md","\u002Fblog\u002F2013\u002F08\u002F27\u002Fgrails-mysql-boolean-gotcha","Grails MySQL Boolean Gotcha",{"slug":4932,"date":4933,"published":12,"tags":4934,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4930},"grails-mysql-boolean-gotcha","2013-08-27T18:08:00-04:00",[4479,4283],{"minutes":328,"text":2734},{"_id":4937,"path":4938,"title":4939,"description":4939,"meta":4940,"readingTime":4944},"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":4941,"date":4942,"published":12,"tags":4943,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4939},"grails-interactive-mode-use-it","2013-08-27T15:08:00-04:00",[4479],{"minutes":289,"text":3611},{"_id":4946,"path":4947,"title":4948,"description":4948,"meta":4949,"readingTime":4953},"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":4950,"date":4951,"published":12,"tags":4952,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4948},"intellij-spring-bean-injection-notification","2013-08-23T08:08:00-04:00",[4479,4283],{"minutes":278,"text":3827},{"_id":4955,"path":4956,"title":4957,"description":4957,"meta":4958,"readingTime":4962},"blog\u002Fblog\u002F2013\u002F08\u002F22\u002Fgroovy-ternary-operator.md","\u002Fblog\u002F2013\u002F08\u002F22\u002Fgroovy-ternary-operator","Groovy Ternary Operator",{"slug":4959,"date":4960,"published":12,"tags":4961,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4957},"groovy-ternary-operator","2013-08-22T13:08:00-04:00",[4283],{"minutes":311,"text":3452},{"_id":4964,"path":4965,"title":4966,"description":4966,"meta":4967,"readingTime":4971},"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":4968,"date":4969,"published":12,"tags":4970,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4966},"groovy-collections-vs-my-current-thought-process","2013-08-21T16:08:00-04:00",[4479,4283],{"minutes":368,"text":2132},{"_id":4973,"path":4974,"title":4975,"description":4975,"meta":4976,"readingTime":4980},"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":4977,"date":4978,"published":12,"tags":4979,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4975},"writing-sql-in-a-grails-application","2013-08-21T12:08:00-04:00",[4479],{"minutes":311,"text":3452},{"_id":4982,"path":4983,"title":4984,"description":4984,"meta":4985,"readingTime":4989},"blog\u002Fblog\u002F2013\u002F08\u002F20\u002Fgrails-hibernate-logging.md","\u002Fblog\u002F2013\u002F08\u002F20\u002Fgrails-hibernate-logging","Grails Hibernate Logging",{"slug":4986,"date":4987,"published":12,"tags":4988,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4984},"grails-hibernate-logging","2013-08-20T17:08:00-04:00",[4479],{"minutes":278,"text":3827},{"_id":4991,"path":4992,"title":4993,"description":4993,"meta":4994,"readingTime":4998},"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":4995,"date":4996,"published":12,"tags":4997,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":4993},"groovy-primitive-data-types-vs-classes","2013-08-20T12:08:00-04:00",[4479,4283],{"minutes":323,"text":3184},{"_id":5000,"path":5001,"title":5002,"description":5002,"meta":5003,"readingTime":5007},"blog\u002Fblog\u002F2013\u002F08\u002F20\u002Fgroovys-null-safe-operator.md","\u002Fblog\u002F2013\u002F08\u002F20\u002Fgroovys-null-safe-operator","Groovy's null safe operator",{"slug":5004,"date":5005,"published":12,"tags":5006,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":5002},"groovys-null-safe-operator","2013-08-20T06:08:00-04:00",[4479,4283],{"minutes":305,"text":3625},{"_id":5009,"path":5010,"title":5011,"description":5012,"meta":5013,"readingTime":5018},"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":5014,"date":5015,"published":12,"tags":5016,"author":15,"cover":5017,"video":11,"excerpt":11,"shortDesc":5012},"create-sql-insert-statements-from-a-spreadsheet","2010-08-04T15:08:00.000Z",[402],".\u002Fsql-cover.png",{"minutes":305,"text":3625}]