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