[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"blog-post-spring-initializr-tui":3,"blog-posts-all":478},{"_id":4,"path":5,"title":6,"description":7,"meta":8,"body":19},"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":9,"date":10,"updatedOn":11,"published":12,"tags":13,"author":16,"cover":17,"video":18,"excerpt":11,"shortDesc":7},"spring-initializr-tui","2026-03-14T10:00:00.000Z",null,true,[14,15],"Java","Spring Boot","Dan Vega","spring-init-tui-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJ9C2MiQTIYs",{"type":20,"value":21,"toc":463},"minimark",[22,26,37,44,49,52,82,85,88,92,104,112,115,119,132,137,140,148,164,171,174,178,185,188,192,197,200,211,217,227,234,238,243,254,257,260,264,267,270,288,291,296,300,306,353,356,367,373,377,380,396,405,416,419,423,426,432,438,441,445,448,456,459],[23,24,25],"p",{},"If you've been spending more time in the terminal lately (thanks to tools like Claude Code), you've probably felt\nthe friction of switching to a browser just to bootstrap a new Spring project. I kept bouncing between the Spring\nInitializr website, my downloads folder, my IDE, and then back to the terminal to start coding. That workflow had\ntoo many steps, and I wanted to fix it.",[23,27,28,29,36],{},"So when I spotted a tweet announcing ",[30,31,35],"a",{"href":32,"rel":33},"https:\u002F\u002Ftambuui.com",[34],"nofollow","Tambu UI",", a brand-new open source Terminal UI (TUI)\nframework for Java, I knew exactly what I wanted to build: a full terminal interface for the Spring Initializr that\nlets me create, configure, and open Spring projects without ever leaving the command line.",[38,39,41],"git-hub-repo",{"url":40},"https:\u002F\u002Fgithub.com\u002Fdanvega\u002Fspring-initializr-tui",[23,42,43],{},"Follow along with the complete working example.",[45,46,48],"h2",{"id":47},"the-workflow-problem","The Workflow Problem",[23,50,51],{},"Here's what my project creation process used to look like:",[53,54,55,64,67,70,73,76,79],"ol",{},[56,57,58,59],"li",{},"Open a browser and navigate to ",[30,60,63],{"href":61,"rel":62},"https:\u002F\u002Fstart.spring.io",[34],"start.spring.io",[56,65,66],{},"Fill in metadata, select dependencies, choose build tool and Java version",[56,68,69],{},"Download the zip file",[56,71,72],{},"Navigate to my downloads folder and unzip it",[56,74,75],{},"Open the project in IntelliJ IDEA",[56,77,78],{},"Open a terminal in that directory",[56,80,81],{},"Start Claude Code",[23,83,84],{},"That's seven steps just to get to the point where I can actually start building something. And since I'm already in\nthe terminal running Claude Code, it felt silly to leave the terminal just to create the project in the first place.",[23,86,87],{},"What I really wanted was a single command that would let me configure a Spring Boot project, generate it, open it in my IDE,\nand kick off Claude Code, all from the terminal.",[45,89,91],{"id":90},"discovering-tambu-ui","Discovering Tambu UI",[23,93,94,97,98,103],{},[30,95,35],{"href":32,"rel":96},[34]," is a new open source TUI framework for the Java ecosystem created by Max Anderson.\nIf you've seen tools like ",[30,99,102],{"href":100,"rel":101},"https:\u002F\u002Fgithub.com\u002Fjesseduffield\u002Flazygit",[34],"Lazygit"," or other modern terminal applications\nwith rich interactive interfaces, that's exactly the kind of experience Tambu UI enables you to build with Java.",[23,105,106,107,111],{},"The framework gives you components for building interactive terminal layouts with navigation, text input, selection\nlists, file viewers, and more. The ",[30,108,110],{"href":32,"rel":109},[34],"announcement blog post"," has a great trailer video and demos\nyou can try out using JBang.",[23,113,114],{},"What caught my attention is that it combines two things I love: Java and working in the terminal. I was on a flight\nhome from Dallas when I saw the announcement, fired up Claude Code on my phone, and started iterating on ideas right\nthere.",[45,116,118],{"id":117},"how-the-spring-initializr-tui-works","How the Spring Initializr TUI Works",[23,120,121,122,126,127,131],{},"One important thing to understand is that I didn't rewrite the Spring Initializr logic. The Spring Initializr\nalready exposes an API endpoint that the web UI, your IDE plugins, and other tools all use to generate projects. My\nTUI is just another client for that same API. This is the same approach I used when I built a ",[123,124,125],"span",{},"Raycast extension","\n(",[30,128,129],{"href":129,"rel":130},"https:\u002F\u002Fwww.raycast.com\u002F",[34],") for the Spring Initializr a while back.",[133,134,136],"h3",{"id":135},"running-the-tui","Running the TUI",[23,138,139],{},"I built the project as a GraalVM native executable, which gives you fast startup time and low memory usage. Those\ntwo qualities matter a lot for a command-line tool since you don't want to wait several seconds for a JVM to warm up\nevery time you create a project.",[23,141,142,143,147],{},"I created an alias called ",[144,145,146],"code",{},"spring"," that points to the native executable, so getting started is as simple as:",[149,150,155],"pre",{"className":151,"code":152,"language":153,"meta":154,"style":154},"language-bash shiki shiki-themes github-light github-dark github-light","spring\n","bash","",[144,156,157],{"__ignoreMap":154},[123,158,161],{"class":159,"line":160},"line",1,[123,162,152],{"class":163},"sZnax",[23,165,166],{},[167,168],"img",{"alt":169,"src":170},"Spring Init TUI","\u002Fimages\u002Fblog\u002F2026\u002F03\u002F14\u002Fmain_screen.png",[23,172,173],{},"You'll see a splash screen followed by the main TUI interface. From there, you have access to the full project\nconfiguration screen where you can set all the same options you'd find on start.spring.io.",[133,175,177],{"id":176},"configuration-and-preferences","Configuration and Preferences",[23,179,180,181,184],{},"The TUI stores your preferences in a configuration file located in your home directory under ",[144,182,183],{},".spring-initializr",".\nJust like the web version of the Spring Initializr, it remembers your last selections. If your previous project used\nMaven, Java 25, Spring Boot 4.0.3, and YAML configuration, those will be pre-selected the next time you open it.",[23,186,187],{},"This is a small detail that makes a big difference when you're creating multiple projects throughout the week with similar settings.",[133,189,191],{"id":190},"dependency-selection","Dependency Selection",[23,193,194],{},[167,195],{"alt":169,"src":196},"\u002Fimages\u002Fblog\u002F2026\u002F03\u002F14\u002Ffuzzy_search.png",[23,198,199],{},"The dependency picker is where I spent a lot of time getting the experience right. You can browse through\ndependencies and toggle them on and off with the Enter key. But the real power comes from the search and filtering\nfeatures.",[23,201,202,206,207,210],{},[203,204,205],"strong",{},"Fuzzy search"," lets you find dependencies without typing the full name. Want Spring Web? You can type ",[144,208,209],{},"s web"," and it will match. Looking for the HTTP client? Just start typing and it narrows down the list.",[23,212,213,216],{},[203,214,215],{},"Favorites"," keep track of dependencies you use often so you can quickly select your go-to stack without scrolling through the entire catalog.",[23,218,219,222,223,226],{},[203,220,221],{},"Category filtering"," lets you jump between dependency categories. Press ",[144,224,225],{},"C"," and start typing a category name like \"AI\" to jump straight to AI-related dependencies.",[23,228,229,230,233],{},"You can also press ",[144,231,232],{},"X"," to clear all selected dependencies and start fresh.",[133,235,237],{"id":236},"exploring-the-build-before-generating","Exploring the Build Before Generating",[23,239,240],{},[167,241],{"alt":169,"src":242},"\u002Fimages\u002Fblog\u002F2026\u002F03\u002F14\u002Fexplore.png",[23,244,245,246,249,250,253],{},"One feature I'm particularly happy with is the build explorer. Before you generate your project, you can preview\nexactly what you're going to get. The explorer opens a file viewer that defaults to your build file (",[144,247,248],{},"pom.xml"," for\nMaven or ",[144,251,252],{},"build.gradle"," for Gradle).",[23,255,256],{},"As you scroll through the file, there's a visual progress indicator showing how far you are through the content. You\ncan tab through all the generated files to review the project structure, the main application class, configuration\nfiles, and anything else the Initializr produces.",[23,258,259],{},"This gives you a chance to catch mistakes before you commit to generating the project. Did you forget a dependency? Escape back out and add it.",[133,261,263],{"id":262},"generating-and-opening-your-project","Generating and Opening Your Project",[23,265,266],{},"When you're ready, the generate action downloads and extracts the project to your current working directory. It creates a properly named folder based on your project's artifact ID.",[23,268,269],{},"The TUI detects supported IDEs and editors on your system and lets you open the project directly. Currently supported editors include:",[271,272,273,276,279,282,285],"ul",{},[56,274,275],{},"IntelliJ IDEA",[56,277,278],{},"Visual Studio Code",[56,280,281],{},"Cursor",[56,283,284],{},"Eclipse with Spring Tool Suite",[56,286,287],{},"NetBeans",[23,289,290],{},"After selecting your editor, you have one more trick up your sleeve: post-generation hooks.",[23,292,293],{},[167,294],{"alt":169,"src":295},"\u002Fimages\u002Fblog\u002F2026\u002F03\u002F14\u002Fgenerate.png",[133,297,299],{"id":298},"post-generation-hooks","Post-Generation Hooks",[23,301,302,303,305],{},"This is the feature that ties the whole workflow together. In your ",[144,304,183],{}," configuration file, you can\ndefine a command to run after project generation completes. For me, that command launches Claude Code in the new\nproject directory.",[149,307,311],{"className":308,"code":309,"language":310,"meta":154,"style":154},"language-json shiki shiki-themes github-light github-dark github-light","{\n  \"postGenerateCommand\" : \"claude --dangerously-skip-permissions\",\n  \"theme\" : \"nord\"\n}\n","json",[144,312,313,319,336,347],{"__ignoreMap":154},[123,314,315],{"class":159,"line":160},[123,316,318],{"class":317},"s-uPX","{\n",[123,320,322,326,329,333],{"class":159,"line":321},2,[123,323,325],{"class":324},"sECI1","  \"postGenerateCommand\"",[123,327,328],{"class":317}," : ",[123,330,332],{"class":331},"suV6U","\"claude --dangerously-skip-permissions\"",[123,334,335],{"class":317},",\n",[123,337,339,342,344],{"class":159,"line":338},3,[123,340,341],{"class":324},"  \"theme\"",[123,343,328],{"class":317},[123,345,346],{"class":331},"\"nord\"\n",[123,348,350],{"class":159,"line":349},4,[123,351,352],{"class":317},"}\n",[23,354,355],{},"So when I hit Enter to generate, three things happen in rapid succession:",[53,357,358,361,364],{},[56,359,360],{},"The project is extracted to my downloads directory",[56,362,363],{},"IntelliJ IDEA opens with the new project",[56,365,366],{},"Claude Code starts up in that same project directory",[23,368,369,370,372],{},"My seven-step workflow is now one command. I type ",[144,371,146],{},", configure my project, hit generate, and I'm ready to start building.",[45,374,376],{"id":375},"building-it-as-a-native-image","Building It as a Native Image",[23,378,379],{},"The project uses JDK 25 and GraalVM to produce native executables. If you want to build from source, you'll need GraalVM installed, and you can create the native image using Maven:",[149,381,383],{"className":151,"code":382,"language":153,"meta":154,"style":154},".\u002Fmvnw -Pnative native:compile\n",[144,384,385],{"__ignoreMap":154},[123,386,387,390,393],{"class":159,"line":160},[123,388,389],{"class":163},".\u002Fmvnw",[123,391,392],{"class":324}," -Pnative",[123,394,395],{"class":331}," native:compile\n",[23,397,398,399,404],{},"If you'd rather not build from source, I've set up GitHub Actions workflows that automatically create\nplatform-specific binaries whenever I tag a release. Head over to the ",[30,400,403],{"href":401,"rel":402},"https:\u002F\u002Fgithub.com\u002Fdanvega\u002Fspring-initializr-tui\u002Freleases",[34],"releases page"," and you'll find pre-built binaries for:",[271,406,407,410,413],{},[56,408,409],{},"macOS (ARM64)",[56,411,412],{},"Windows (EXE)",[56,414,415],{},"Linux (x86_64)",[23,417,418],{},"Download the zip for your platform, extract it, and you're good to go. All setup instructions are in the README.",[45,420,422],{"id":421},"whats-next","What's Next",[23,424,425],{},"This project started as a personal tool to scratch an itch, but there are some features I'd love to add:",[23,427,428,431],{},[203,429,430],{},"Bookmarks"," would let you save your favorite project configurations. The Spring Initializr web UI already has this concept, and bringing it to the TUI would save even more time for developers who frequently spin up similar projects.",[23,433,434,437],{},[203,435,436],{},"Templates"," could go a step further. Imagine having a Markdown file in your configuration directory that defines not just the dependencies and metadata, but also starter configuration values. For an AI project, the template might include your API keys configuration. For an MCP server, it might include the boilerplate setup you always need. Templates would let you go from zero to a fully configured project in seconds.",[23,439,440],{},"The sky really is the limit when you're building tools for yourself, and that's what makes this such a fun time to be a developer.",[45,442,444],{"id":443},"we-live-in-a-great-time-to-build","We Live in a Great Time to Build",[23,446,447],{},"What I find most exciting about this project isn't the TUI itself. It's the fact that I went from seeing a tweet, to\niterating on ideas on my phone during a flight, to having a working tool the next morning. We live in such an\nincredible time when if something bugs you about your workflow, you can just go build a solution. Your time and bandwidth\nare no longer roadblocks!",[23,449,450,451,455],{},"If you try the Spring Initializr TUI, I'd love to hear your feedback. Star the ",[30,452,454],{"href":40,"rel":453},[34],"repository",",\nopen issues with feature requests, or just let me know if it helps your workflow the way it's helped mine.",[23,457,458],{},"Happy Coding!",[460,461,462],"style",{},"html pre.shiki code .sZnax, html code.shiki .sZnax{--shiki-default:#6F42C1;--shiki-dark:#B392F0;--shiki-sepia:#6F42C1}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 .s-uPX, html code.shiki .s-uPX{--shiki-default:#24292E;--shiki-dark:#E1E4E8;--shiki-sepia:#24292E}html pre.shiki code .sECI1, html code.shiki .sECI1{--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-sepia:#005CC5}html pre.shiki code .suV6U, html code.shiki .suV6U{--shiki-default:#032F62;--shiki-dark:#9ECBFF;--shiki-sepia:#032F62}",{"title":154,"searchDepth":321,"depth":321,"links":464},[465,466,467,475,476,477],{"id":47,"depth":321,"text":48},{"id":90,"depth":321,"text":91},{"id":117,"depth":321,"text":118,"children":468},[469,470,471,472,473,474],{"id":135,"depth":338,"text":136},{"id":176,"depth":338,"text":177},{"id":190,"depth":338,"text":191},{"id":236,"depth":338,"text":237},{"id":262,"depth":338,"text":263},{"id":298,"depth":338,"text":299},{"id":375,"depth":321,"text":376},{"id":421,"depth":321,"text":422},{"id":443,"depth":321,"text":444},[479,494,510,524,541,557,571,584,598,611,623,637,652,664,677,692,707,721,735,747,760,774,786,801,814,826,841,855,867,881,892,904,908,920,932,943,956,969,981,996,1007,1021,1034,1045,1057,1069,1081,1093,1104,1117,1129,1141,1152,1165,1176,1189,1202,1215,1226,1238,1249,1261,1272,1283,1294,1305,1316,1328,1339,1353,1364,1375,1386,1397,1408,1419,1430,1441,1452,1463,1475,1488,1500,1513,1526,1539,1551,1563,1575,1587,1598,1609,1620,1632,1644,1656,1668,1680,1692,1705,1720,1731,1742,1754,1766,1778,1790,1803,1815,1827,1839,1851,1864,1876,1890,1903,1915,1927,1940,1951,1963,1975,1988,2000,2012,2024,2036,2048,2062,2077,2089,2101,2112,2123,2136,2149,2163,2175,2186,2197,2208,2220,2232,2245,2259,2272,2284,2296,2310,2321,2332,2343,2354,2366,2377,2388,2400,2412,2424,2436,2448,2461,2473,2486,2498,2509,2520,2532,2544,2556,2567,2578,2589,2600,2611,2622,2633,2645,2656,2667,2678,2688,2698,2710,2721,2732,2742,2753,2764,2774,2783,2793,2803,2813,2824,2834,2845,2856,2866,2876,2886,2896,2906,2917,2927,2938,2948,2958,2968,2979,2989,2999,3009,3020,3029,3039,3049,3059,3070,3081,3091,3100,3109,3120,3131,3141,3150,3160,3170,3180,3191,3201,3211,3221,3232,3241,3251,3262,3274,3285,3295,3306,3317,3327,3337,3349,3360,3371,3382,3392,3402,3414,3425,3435,3445,3455,3466,3475,3484,3493,3502,3511,3520,3529,3538,3547],{"_id":480,"path":481,"title":482,"description":483,"meta":484,"readingTime":491},"blog\u002Fblog\u002F2026\u002F07\u002F28\u002Fspring-ai-guardrails-safeguard-advisor.md","\u002Fblog\u002F2026\u002F07\u002F28\u002Fspring-ai-guardrails-safeguard-advisor","Spring AI Guardrails: 4 Layers That Actually Hold","Learn how to build Spring AI guardrails with SafeGuardAdvisor, custom PII masking, and output rails to stop prompt injection and data leaks.",{"slug":485,"date":486,"published":12,"tags":487,"author":16,"cover":489,"video":490,"excerpt":11,"shortDesc":483},"spring-ai-guardrails-safeguard-advisor","2026-07-28T09:00:00.000Z",[488,15,14],"Spring AI","spring-ai-guardrails-safeguard-advisor.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FEZ6Uh1-8Ui4",{"minutes":492,"text":493},21,"21 min read",{"_id":495,"path":496,"title":497,"description":498,"meta":499,"readingTime":507},"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":500,"date":501,"published":12,"tags":502,"author":16,"cover":505,"video":506,"excerpt":11,"shortDesc":498},"docker-compose-for-java-developers","2026-07-27T09:00:00.000Z",[14,503,504],"Docker","Postgres","docker-compose-for-java-developers.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F0LNVXHKKJb8",{"minutes":508,"text":509},17,"17 min read",{"_id":511,"path":512,"title":513,"description":514,"meta":515,"readingTime":521},"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":516,"date":517,"published":12,"tags":518,"author":16,"cover":519,"video":520,"excerpt":11,"shortDesc":514},"spring-ai-tool-calling-advisor-2-0","2026-07-24T09:00:00.000Z",[488,15,14],"spring-ai-tool-calling-advisor-2-0.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fg6IhOsFKM7c",{"minutes":522,"text":523},19,"19 min read",{"_id":525,"path":526,"title":527,"description":528,"meta":529,"readingTime":538},"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":530,"date":531,"published":12,"tags":532,"author":11,"cover":537,"video":11,"excerpt":11,"shortDesc":528},"embabel-1-0-ga","2026-07-20T09:00:00.000Z",[533,534,535,536],"java","spring-ai","embabel","ai-agents","embabel-1-0-ga-brutalist.png",{"minutes":539,"text":540},12,"12 min read",{"_id":542,"path":543,"title":544,"description":545,"meta":546,"readingTime":554},"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":547,"date":548,"published":12,"tags":549,"author":16,"cover":553,"video":11,"excerpt":11,"shortDesc":545},"content-creation-workflow","2026-07-18T09:00:00.000Z",[550,551,552],"YouTube","Blogging","AI","content-creation-workflow-blueprint.png",{"minutes":555,"text":556},8,"8 min read",{"_id":558,"path":559,"title":560,"description":561,"meta":562,"readingTime":568},"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":563,"date":564,"published":12,"tags":565,"author":16,"cover":566,"video":567,"excerpt":11,"shortDesc":561},"self-correcting-structured-output","2026-07-17T09:00:00.000Z",[488,15,14],"self-correcting-structured-output.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvxOeeNyOtZY",{"minutes":569,"text":570},16,"16 min read",{"_id":572,"path":573,"title":574,"description":575,"meta":576,"readingTime":581},"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":577,"date":578,"published":12,"tags":579,"author":16,"cover":580,"video":11,"excerpt":11,"shortDesc":575},"can-you-use-java-for-ai","2026-07-15T09:00:00.000Z",[14,552,488],"can-you-use-java-for-ai-editorial.png",{"minutes":582,"text":583},14,"14 min read",{"_id":585,"path":586,"title":587,"description":588,"meta":589,"readingTime":595},"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":590,"date":591,"published":12,"tags":592,"author":16,"cover":594,"video":11,"excerpt":11,"shortDesc":588},"spring-boot-end-of-life","2026-07-14T13:00:00.000Z",[15,14,593,552],"Spring Boot 4","spring-boot-end-of-life-terminal.png",{"minutes":596,"text":597},11,"11 min read",{"_id":599,"path":600,"title":601,"description":602,"meta":603,"readingTime":608},"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":604,"date":605,"published":12,"tags":606,"author":16,"cover":607,"video":11,"excerpt":11,"shortDesc":602},"kill-process-on-port","2026-07-14T09:00:00.000Z",[14,15],"kill-process-on-port.png",{"minutes":609,"text":610},7,"7 min read",{"_id":612,"path":613,"title":614,"description":615,"meta":616,"readingTime":622},"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":617,"date":618,"published":12,"tags":619,"author":16,"cover":620,"video":621,"excerpt":11,"shortDesc":615},"spring-ai-tool-search","2026-07-09T09:00:00.000Z",[488,15],"spring-ai-tool-search.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FVG00DildlvY",{"minutes":508,"text":509},{"_id":624,"path":625,"title":626,"description":627,"meta":628,"readingTime":634},"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":629,"date":630,"published":12,"tags":631,"author":16,"cover":632,"video":633,"excerpt":11,"shortDesc":627},"spring-ai-custom-advisors-tool-logging-token-counter","2026-07-08T09:00:00.000Z",[488,15,14],"spring-ai-custom-advisors-tool-logging-token-counter.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FWNJFR-_N9bc",{"minutes":635,"text":636},24,"24 min read",{"_id":638,"path":639,"title":640,"description":641,"meta":642,"readingTime":649},"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":643,"date":644,"published":12,"tags":645,"author":16,"cover":647,"video":648,"excerpt":11,"shortDesc":641},"ui-dot-sh-agent-skills-for-building-beautiful-uis","2026-07-07T09:00:00.000Z",[552,646],"Tailwind CSS","ui-dot-sh-agent-skills-for-building-beautiful-uis.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F-B7uyMp54S4",{"minutes":650,"text":651},9,"9 min read",{"_id":653,"path":654,"title":655,"description":656,"meta":657,"readingTime":663},"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":658,"date":659,"published":12,"tags":660,"author":16,"cover":661,"video":662,"excerpt":11,"shortDesc":656},"chatclient-vs-chatmodel-spring-ai","2026-07-02T09:00:00.000Z",[488,15],"chatclient-vs-chatmodel-spring-ai.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FIdIDI71sGZM",{"minutes":582,"text":583},{"_id":665,"path":666,"title":667,"description":668,"meta":669,"readingTime":676},"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":670,"date":671,"published":12,"tags":672,"author":16,"cover":674,"video":675,"excerpt":11,"shortDesc":668},"x-twitter-mcp-servers-spring-ai","2026-07-01T09:00:00.000Z",[488,673,15],"MCP","x-twitter-mcp-servers-spring-ai.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fj4chxGtqkY8",{"minutes":522,"text":523},{"_id":678,"path":679,"title":680,"description":681,"meta":682,"readingTime":689},"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":683,"date":684,"published":12,"tags":685,"author":16,"cover":687,"video":688,"excerpt":11,"shortDesc":681},"type-safe-property-paths-spring-boot-4-1","2026-06-30T09:00:00.000Z",[15,686],"Spring Data","type-safe-property-paths-spring-boot-4-1.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FqBC-TrIzsPg",{"minutes":690,"text":691},18,"18 min read",{"_id":693,"path":694,"title":695,"description":696,"meta":697,"readingTime":704},"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":698,"date":699,"published":12,"tags":700,"author":16,"cover":702,"video":703,"excerpt":11,"shortDesc":696},"redis-listener-spring-boot-4-1","2026-06-29T09:00:00.000Z",[15,701],"Redis","redis-listener-spring-boot-4-1.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlMbgBYlUtfc",{"minutes":705,"text":706},10,"10 min read",{"_id":708,"path":709,"title":710,"description":711,"meta":712,"readingTime":718},"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":713,"date":714,"published":12,"tags":715,"author":16,"cover":716,"video":717,"excerpt":11,"shortDesc":711},"spring-boot-ssrf-protection-inet-address-filter","2026-06-26T09:00:00.000Z",[15,14],"spring-boot-ssrf-protection-inet-address-filter.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPDbBG_GrcwU",{"minutes":719,"text":720},13,"13 min read",{"_id":722,"path":723,"title":724,"description":725,"meta":726,"readingTime":732},"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":727,"date":728,"published":12,"tags":729,"author":16,"cover":730,"video":731,"excerpt":11,"shortDesc":725},"lazy-jdbc-connections-spring-boot-4-1","2026-06-25T09:00:00.000Z",[15,686],"lazy-jdbc-connections-spring-boot-4-1.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlsaBN1U2EB8",{"minutes":733,"text":734},15,"15 min read",{"_id":736,"path":737,"title":738,"description":739,"meta":740,"readingTime":746},"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":741,"date":742,"published":12,"tags":743,"author":16,"cover":744,"video":745,"excerpt":11,"shortDesc":739},"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":719,"text":720},{"_id":748,"path":749,"title":750,"description":751,"meta":752,"readingTime":759},"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":753,"date":754,"published":12,"tags":755,"author":16,"cover":757,"video":758,"excerpt":11,"shortDesc":751},"spring-modulith-externalized-events","2026-05-20T09:00:00.000Z",[756],"Spring Modulith","spring-modulith-externalized-events.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F8sJIWwc7Jss",{"minutes":508,"text":509},{"_id":761,"path":762,"title":763,"description":764,"meta":765,"readingTime":773},"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":766,"date":767,"published":12,"tags":768,"author":16,"cover":771,"video":772,"excerpt":11,"shortDesc":764},"spring-boot-kafka-quick-start","2026-05-18T08:00:00.000Z",[15,769,770],"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":690,"text":691},{"_id":775,"path":776,"title":777,"description":778,"meta":779,"readingTime":785},"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":780,"date":781,"published":12,"tags":782,"author":16,"cover":783,"video":784,"excerpt":11,"shortDesc":778},"spring-modulith-durable-events","2026-05-14T09:00:00.000Z",[15,756],"spring-modulith-durable-events.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKLX9ulb2AfM",{"minutes":492,"text":493},{"_id":787,"path":788,"title":789,"description":790,"meta":791,"readingTime":798},"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":792,"date":793,"published":12,"tags":794,"author":16,"cover":796,"video":797,"excerpt":11,"shortDesc":790},"introduction-to-spring-modulith","2026-04-30T09:00:00.000Z",[15,756,14,795],"Modular Monolith","introduction-to-spring-modulith.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxHlDyKVyvig",{"minutes":799,"text":800},22,"22 min read",{"_id":802,"path":803,"title":804,"description":805,"meta":806,"readingTime":813},"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":807,"date":808,"published":12,"tags":809,"author":11,"cover":811,"video":812,"excerpt":11,"shortDesc":805},"embabel-mcp-servers-and-tools","2026-04-10T08:00:00.000Z",[488,810,14],"Embabel","embabel_tools_mcp.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F2mGr7kdstJs",{"minutes":569,"text":570},{"_id":815,"path":816,"title":817,"description":818,"meta":819,"readingTime":825},"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":820,"date":821,"published":12,"tags":822,"author":11,"cover":823,"video":824,"excerpt":11,"shortDesc":818},"embabel-first-look","2026-04-02T08:00:00.000Z",[488,14],"EmbabelFirstLook.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FG5VDQCZu6t0",{"minutes":492,"text":493},{"_id":827,"path":828,"title":829,"description":830,"meta":831,"readingTime":838},"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":832,"date":833,"published":12,"tags":834,"author":16,"cover":836,"video":837,"excerpt":11,"shortDesc":830},"getting-started-with-graphql-for-java-developers","2026-04-01T08:00:00.000Z",[15,14,835],"GraphQL","graphql-java-developers-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxZSv67a9OYA",{"minutes":839,"text":840},33,"33 min read",{"_id":842,"path":843,"title":844,"description":845,"meta":846,"readingTime":852},"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":847,"date":848,"published":12,"tags":849,"author":16,"cover":850,"video":851,"excerpt":11,"shortDesc":845},"spring-building-me-a-coding-agent","2026-03-31T08:00:00.000Z",[488,15,14],".\u002Fcoding_agent_cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FP8s65qu-LZI",{"minutes":853,"text":854},26,"26 min read",{"_id":856,"path":857,"title":858,"description":859,"meta":860,"readingTime":866},"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":861,"date":862,"published":12,"tags":863,"author":16,"cover":864,"video":865,"excerpt":11,"shortDesc":859},"spring-ai-deep-research-agent","2026-03-27T09:00:00.000Z",[552],"spring-ai-deep-research-agent.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F_amdeuCM-aY",{"minutes":492,"text":493},{"_id":868,"path":869,"title":870,"description":871,"meta":872,"readingTime":880},"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":873,"date":874,"published":12,"tags":875,"author":16,"cover":878,"video":879,"excerpt":11,"shortDesc":871},"rest-client-error-handling","2026-03-26T09:00:00.000Z",[15,876,877,14],"Spring Framework","REST Client","rest-client-error-handling.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMuYzEZk6-zI",{"minutes":690,"text":691},{"_id":882,"path":883,"title":884,"description":885,"meta":886,"readingTime":891},"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":887,"date":888,"published":12,"tags":889,"author":16,"cover":890,"video":11,"excerpt":11,"shortDesc":885},"browserbase-spring-boot-starter","2026-03-25T08:00:00.000Z",[15,488],"browswerbase_spring_boot_starter_cover.png",{"minutes":522,"text":523},{"_id":893,"path":894,"title":895,"description":896,"meta":897,"readingTime":903},"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":898,"date":899,"published":12,"tags":900,"author":16,"cover":901,"video":902,"excerpt":11,"shortDesc":896},"jdk-26-final-means-final","2026-03-20T10:00:00.000Z",[14],"java-26-final-means-final.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fj-y0m6j6TBc",{"minutes":596,"text":597},{"_id":4,"path":5,"title":6,"description":7,"meta":905,"readingTime":907},{"slug":9,"date":10,"published":12,"tags":906,"author":16,"cover":17,"video":18,"excerpt":11,"shortDesc":7},[14,15],{"minutes":705,"text":706},{"_id":909,"path":910,"title":911,"description":912,"meta":913,"readingTime":919},"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":914,"date":915,"published":12,"tags":916,"author":16,"cover":917,"video":918,"excerpt":11,"shortDesc":912},"spring-ai-prompt-caching","2026-02-08T09:00:00.000Z",[488],"spring-ai-prompt-caching.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FeYb7BKW4QcU",{"minutes":582,"text":583},{"_id":921,"path":922,"title":923,"description":924,"meta":925,"readingTime":931},"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":926,"date":927,"published":12,"tags":928,"author":16,"cover":929,"video":930,"excerpt":11,"shortDesc":924},"openai-codex-first-look","2026-02-05T09:00:00.000Z",[14,552],"codex_thumbnail.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FQ44TPEtNcNo",{"minutes":705,"text":706},{"_id":933,"path":934,"title":935,"description":936,"meta":937,"readingTime":942},"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":938,"date":927,"published":12,"tags":939,"author":16,"cover":940,"video":941,"excerpt":11,"shortDesc":936},"ralph-loop",[552,14],"ralph-loop.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FCV97l0GkPHo",{"minutes":569,"text":570},{"_id":944,"path":945,"title":946,"description":947,"meta":948,"readingTime":955},"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":949,"date":950,"published":12,"tags":951,"author":16,"cover":953,"video":954,"excerpt":11,"shortDesc":947},"opentelemetry-spring-boot","2025-12-23T09:00:00.000Z",[15,952],"Observability","spring-boot-open-telemetry.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6_Y41z7OIv8",{"minutes":539,"text":540},{"_id":957,"path":958,"title":959,"description":960,"meta":961,"readingTime":968},"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":962,"date":963,"published":12,"tags":964,"author":16,"cover":966,"video":967,"excerpt":11,"shortDesc":960},"spring-boot-4-rest-api","2025-12-18T09:00:00.000Z",[15,14,965],"REST API","spring-boot-rest-api-easy.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FklnxzL8oQdM",{"minutes":522,"text":523},{"_id":970,"path":971,"title":972,"description":973,"meta":974,"readingTime":980},"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":975,"date":976,"published":12,"tags":977,"author":16,"cover":978,"video":979,"excerpt":11,"shortDesc":973},"loading-spring-resources","2025-12-17T09:00:00.000Z",[15,876],"spring_resources_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FHmcgwj65Unw",{"minutes":522,"text":523},{"_id":982,"path":983,"title":984,"description":985,"meta":986,"readingTime":993},"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":987,"date":988,"published":12,"tags":989,"author":16,"cover":991,"video":992,"excerpt":11,"shortDesc":985},"spring-security-7-multi-factor-authentication","2025-12-16T09:00:00.000Z",[15,990],"Spring Security","spring_security_mfa_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKmNAqlaKwjw",{"minutes":994,"text":995},28,"28 min read",{"_id":997,"path":998,"title":999,"description":1000,"meta":1001,"readingTime":1006},"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":1002,"date":1003,"published":12,"tags":1004,"author":16,"cover":11,"video":1005,"excerpt":11,"shortDesc":1000},"spring-boot-4-modularization","2025-12-12T09:00:00.000Z",[15,593,14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkTLuhE7_jGU",{"minutes":582,"text":583},{"_id":1008,"path":1009,"title":1010,"description":1011,"meta":1012,"readingTime":1018},"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":1013,"date":1014,"published":12,"tags":1015,"author":16,"cover":1016,"video":1017,"excerpt":11,"shortDesc":1011},"mock-vs-rest","2025-12-10T09:00:00.000Z",[15],".\u002Fmock-vs-rest.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FxWcqvrpj2PM",{"minutes":1019,"text":1020},23,"23 min read",{"_id":1022,"path":1023,"title":1024,"description":1025,"meta":1026,"readingTime":1033},"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":1027,"date":1028,"published":12,"tags":1029,"author":16,"cover":1031,"video":1032,"excerpt":11,"shortDesc":1025},"jms-client","2025-12-05T09:00:00.000Z",[14,15,1030],"JMS",".\u002Fjms_client_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F91xVrWlzIe4",{"minutes":508,"text":509},{"_id":1035,"path":1036,"title":1037,"description":1038,"meta":1039,"readingTime":1044},"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":1040,"date":1041,"published":12,"tags":1042,"author":16,"cover":1043,"video":11,"excerpt":11,"shortDesc":1038},"spring-data-aot-repositories","2025-11-25T10:00:00.000Z",[15,686],"spring-data-aot-repositories.png",{"minutes":733,"text":734},{"_id":1046,"path":1047,"title":1048,"description":1049,"meta":1050,"readingTime":1056},"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":1051,"date":1052,"published":12,"tags":1053,"author":16,"cover":1055,"video":11,"excerpt":11,"shortDesc":1049},"spring-boot-4-is-here","2025-11-24T09:00:00.000Z",[15,593,1054,14],"Spring","spring-boot-4-is-here.png",{"minutes":839,"text":840},{"_id":1058,"path":1059,"title":1060,"description":1061,"meta":1062,"readingTime":1068},"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":1063,"date":1064,"published":12,"tags":1065,"author":16,"cover":1066,"video":1067,"excerpt":11,"shortDesc":1061},"spring-boot-4-native-retry-support","2025-11-13T09:00:00.000Z",[15,593,14],"spring_resilience_features_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FCT1wGTwOfg0",{"minutes":994,"text":995},{"_id":1070,"path":1071,"title":1072,"description":1073,"meta":1074,"readingTime":1080},"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":1075,"date":1076,"published":12,"tags":1077,"author":16,"cover":1078,"video":1079,"excerpt":11,"shortDesc":1073},"jackson-3-spring-boot-4","2025-11-10T09:00:00.000Z",[15,593],"jackson_3_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4cvP_qroLH4",{"minutes":994,"text":995},{"_id":1082,"path":1083,"title":1084,"description":1085,"meta":1086,"readingTime":1092},"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":1087,"date":1088,"published":12,"tags":1089,"author":16,"cover":1090,"video":1091,"excerpt":11,"shortDesc":1085},"http-interfaces-spring-boot-4","2025-11-06T09:00:00.000Z",[15,593,876],"http_interfaces_cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTEd5e4Thu7M",{"minutes":522,"text":523},{"_id":1094,"path":1095,"title":1096,"description":1097,"meta":1098,"readingTime":1103},"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":1099,"date":1100,"published":12,"tags":1101,"author":16,"cover":11,"video":1102,"excerpt":11,"shortDesc":1097},"spring-boot-4-null-safety","2025-11-05T09:00:00.000Z",[14,15,593],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FQlGnaRoujL8",{"minutes":799,"text":800},{"_id":1105,"path":1106,"title":1107,"description":1108,"meta":1109,"readingTime":1116},"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":1110,"date":1111,"published":12,"tags":1112,"author":16,"cover":1113,"video":1114,"excerpt":11,"shortDesc":1115},"programmatic-bean-registration","2025-11-01T09:00:00.000Z",[15,593,876],"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":539,"text":540},{"_id":1118,"path":1119,"title":1120,"description":1121,"meta":1122,"readingTime":1128},"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":1123,"date":1124,"published":12,"tags":1125,"author":16,"cover":1127,"video":11,"excerpt":11,"shortDesc":1121},"spring-framework-7-rest-test-client","2025-10-30T09:00:00.000Z",[876,15,1126],"Testing","spring_boot_4_rest-test-client.png",{"minutes":799,"text":800},{"_id":1130,"path":1131,"title":1132,"description":1133,"meta":1134,"readingTime":1140},"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":1135,"date":1136,"published":12,"tags":1137,"author":16,"cover":1138,"video":1139,"excerpt":11,"shortDesc":1133},"spring-ai-mcp-client","2025-10-28T09:00:00.000Z",[488],"spring_ai_mcp_client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTSFkdlreRMQ",{"minutes":582,"text":583},{"_id":1142,"path":1143,"title":1144,"description":1145,"meta":1146,"readingTime":1151},"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":1147,"date":1148,"published":12,"tags":1149,"author":16,"cover":1150,"video":11,"excerpt":11,"shortDesc":1145},"api-versioning-with-graphql","2025-09-30T09:00:00.000Z",[15,835],"api_versioning_graphql.png",{"minutes":733,"text":734},{"_id":1153,"path":1154,"title":1155,"description":1156,"meta":1157,"readingTime":1162},"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":1158,"date":1159,"published":12,"tags":1160,"author":16,"cover":1161,"video":154,"excerpt":11,"shortDesc":1156},"spring-boot-4-api-versioning","2025-09-25T09:00:00.000Z",[15,593,876],"spring_boot_4_api_versioning.png",{"minutes":1163,"text":1164},25,"25 min read",{"_id":1166,"path":1167,"title":1168,"description":1169,"meta":1170,"readingTime":1175},"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":1171,"date":1172,"published":12,"tags":1173,"author":16,"cover":1174,"video":11,"excerpt":11,"shortDesc":1169},"cyc-mcp-server-spring-ai","2025-09-24T09:00:00.000Z",[1054,488,552,673,14],"spring_ai_mcp_servers_cover.png",{"minutes":492,"text":493},{"_id":1177,"path":1178,"title":1179,"description":1180,"meta":1181,"readingTime":1186},"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":1182,"date":1183,"published":12,"tags":1184,"author":16,"cover":1185,"video":11,"excerpt":11,"shortDesc":1180},"spring-boot-3-features","2025-09-17T09:00:00.000Z",[15,14,876],"spring_boot_3_features_cover.png",{"minutes":1187,"text":1188},52,"52 min read",{"_id":1190,"path":1191,"title":1192,"description":1193,"meta":1194,"readingTime":1201},"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":1195,"date":1196,"published":12,"tags":1197,"author":16,"cover":1198,"video":1199,"excerpt":11,"shortDesc":1200},"jdk-24-virtual-threads-without-pinning","2025-04-09T17:00:00.000Z",[14,1054],".\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":690,"text":691},{"_id":1203,"path":1204,"title":1205,"description":1206,"meta":1207,"readingTime":1214},"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":1208,"date":1209,"published":12,"tags":1210,"author":16,"cover":1211,"video":1212,"excerpt":11,"shortDesc":1213},"docker-model-runner","2025-04-07T17:00:00.000Z",[488],".\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":582,"text":583},{"_id":1216,"path":1217,"title":1218,"description":1219,"meta":1220,"readingTime":1225},"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":1221,"date":1222,"published":12,"tags":1223,"author":16,"cover":11,"video":1224,"excerpt":11,"shortDesc":1219},"creating-your-first-mcp-server-java","2025-03-26T17:00:00.000Z",[14,1054,673],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fw5YVHG1j3Co",{"minutes":569,"text":570},{"_id":1227,"path":1228,"title":1229,"description":1230,"meta":1231,"readingTime":1235},"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":1232,"date":1233,"published":12,"tags":1234,"author":16,"cover":11,"video":11,"excerpt":11,"shortDesc":1230},"stream-gatherers","2025-03-21T09:00:00.000Z",[14],{"minutes":1236,"text":1237},31,"31 min read",{"_id":1239,"path":1240,"title":1241,"description":1242,"meta":1243,"readingTime":1248},"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":1244,"date":1245,"published":12,"tags":1246,"author":16,"cover":11,"video":1247,"excerpt":11,"shortDesc":1242},"model-context-protocol-introduction","2025-03-11T17:00:00.000Z",[488,673],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FnNLshWCoe0o",{"minutes":582,"text":583},{"_id":1250,"path":1251,"title":1252,"description":1253,"meta":1254,"readingTime":1258},"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":1255,"date":1256,"published":12,"tags":1257,"author":16,"cover":11,"video":11,"excerpt":11,"shortDesc":1253},"ai-powered-dev-hacks-confoo-2025","2025-02-27T09:00:00.000Z",[552],{"minutes":1259,"text":1260},6,"6 min read",{"_id":1262,"path":1263,"title":1264,"description":1265,"meta":1266,"readingTime":1271},"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":1267,"date":1268,"published":12,"tags":1269,"author":16,"cover":11,"video":1270,"excerpt":11,"shortDesc":1265},"spring-boot-graphql-query-by-example","2024-12-02T09:00:00.000Z",[835,15],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJ8vC8RflPPY",{"minutes":650,"text":651},{"_id":1273,"path":1274,"title":1275,"description":1276,"meta":1277,"readingTime":1282},"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":1278,"date":1279,"published":12,"tags":1280,"author":16,"cover":1281,"video":11,"excerpt":11,"shortDesc":1276},"no-lombok","2024-11-11T09:00:00.000Z",[14],".\u002Fno_lombok_cover.png",{"minutes":539,"text":540},{"_id":1284,"path":1285,"title":1286,"description":1287,"meta":1288,"readingTime":1293},"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":1289,"date":1290,"published":12,"tags":1291,"author":16,"cover":11,"video":1292,"excerpt":11,"shortDesc":1287},"spring-data-jpa-query-by-example","2024-11-08T17:00:00.000Z",[15,686],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FNGVWHdGNbiI",{"minutes":650,"text":651},{"_id":1295,"path":1296,"title":1297,"description":1298,"meta":1299,"readingTime":1304},"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":1300,"date":1301,"published":12,"tags":1302,"author":16,"cover":11,"video":1303,"excerpt":11,"shortDesc":1298},"rest-client-oauth2-support","2024-11-05T17:00:00.000Z",[15,990],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FnFKcJDpUuZ8",{"minutes":705,"text":706},{"_id":1306,"path":1307,"title":1308,"description":1309,"meta":1310,"readingTime":1315},"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":1311,"date":1312,"published":12,"tags":1313,"author":16,"cover":11,"video":1314,"excerpt":11,"shortDesc":1309},"spring-ai-tokens","2024-11-01T17:00:00.000Z",[488],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FZUCVRppXPSc",{"minutes":719,"text":720},{"_id":1317,"path":1318,"title":1319,"description":1320,"meta":1321,"readingTime":1327},"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":1322,"date":1323,"published":12,"tags":1324,"author":16,"cover":11,"video":1326,"excerpt":11,"shortDesc":1320},"spring-boot-rest-client-logging","2024-10-31T09:00:00.000Z",[15,1325],"Rest Client","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fl35P5GylXN8",{"minutes":733,"text":734},{"_id":1329,"path":1330,"title":1331,"description":1332,"meta":1333,"readingTime":1338},"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":1334,"date":1335,"published":12,"tags":1336,"author":16,"cover":11,"video":1337,"excerpt":11,"shortDesc":1332},"spring-boot-environment-variables","2024-10-29T17:00:00.000Z",[15],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FrQV76dufxz4",{"minutes":609,"text":610},{"_id":1340,"path":1341,"title":1342,"description":1343,"meta":1344,"readingTime":1350},"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":1345,"date":1346,"published":12,"tags":1347,"author":16,"cover":1348,"video":1349,"excerpt":11,"shortDesc":1343},"spring-boot-oauth-demo","2024-10-24T17:00:00.000Z",[15,990],".\u002Fspring-security-jte-login.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Ff1h4GkhxMp8",{"minutes":1351,"text":1352},20,"20 min read",{"_id":1354,"path":1355,"title":1356,"description":1357,"meta":1358,"readingTime":1363},"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":1359,"date":1360,"published":12,"tags":1361,"author":16,"cover":11,"video":1362,"excerpt":11,"shortDesc":1357},"getting-started-with-spring-ai-rag","2024-10-22T09:00:00.000Z",[146,534,533],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6Pgmr7xMjiY",{"minutes":650,"text":651},{"_id":1365,"path":1366,"title":1367,"description":1368,"meta":1369,"readingTime":1374},"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":1370,"date":1371,"published":12,"tags":1372,"author":16,"cover":11,"video":1373,"excerpt":11,"shortDesc":1368},"ai-java-developers","2024-10-15T09:00:00.000Z",[14,15,552],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FuoOwVWVl_eU",{"minutes":650,"text":651},{"_id":1376,"path":1377,"title":1378,"description":1379,"meta":1380,"readingTime":1385},"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":1381,"date":1382,"published":12,"tags":1383,"author":16,"cover":11,"video":1384,"excerpt":11,"shortDesc":1379},"spring-ai-multiple-llms","2024-10-14T09:00:00.000Z",[15,14,488],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FbK1MTlEDQvk",{"minutes":650,"text":651},{"_id":1387,"path":1388,"title":1389,"description":1390,"meta":1391,"readingTime":1396},"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":1392,"date":1393,"published":12,"tags":1394,"author":16,"cover":11,"video":1395,"excerpt":11,"shortDesc":1390},"spring-ai-chat-memory","2024-10-11T09:00:00.000Z",[15,14,488],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F6VdM1MOOMrw",{"minutes":596,"text":597},{"_id":1398,"path":1399,"title":1400,"description":1401,"meta":1402,"readingTime":1407},"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":1403,"date":1404,"published":12,"tags":1405,"author":16,"cover":11,"video":1406,"excerpt":11,"shortDesc":1401},"spring-ai-streaming-chatbot","2024-10-08T20:00:00.000Z",[15,14,488],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fq2p0mG4RICM",{"minutes":522,"text":523},{"_id":1409,"path":1410,"title":1411,"description":1412,"meta":1413,"readingTime":1418},"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":1414,"date":1415,"published":12,"tags":1416,"author":16,"cover":11,"video":1417,"excerpt":11,"shortDesc":1412},"jte-forms","2024-10-07T20:00:00.000Z",[15,14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fifnv4kGtZgo",{"minutes":650,"text":651},{"_id":1420,"path":1421,"title":1422,"description":1423,"meta":1424,"readingTime":1429},"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":1425,"date":1426,"published":12,"tags":1427,"author":16,"cover":11,"video":1428,"excerpt":11,"shortDesc":1423},"spring-boot-jte-htmx","2024-10-06T20:00:00.000Z",[15,14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkFksiDRZ824",{"minutes":569,"text":570},{"_id":1431,"path":1432,"title":1433,"description":1434,"meta":1435,"readingTime":1440},"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":1436,"date":1437,"published":12,"tags":1438,"author":16,"cover":11,"video":1439,"excerpt":11,"shortDesc":1434},"jte-layouts","2024-10-03T20:00:00.000Z",[15,14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FdWe-C3-YQEg",{"minutes":596,"text":597},{"_id":1442,"path":1443,"title":1444,"description":1445,"meta":1446,"readingTime":1451},"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":1447,"date":1448,"published":12,"tags":1449,"author":16,"cover":11,"video":1450,"excerpt":11,"shortDesc":1445},"hello-jte","2024-10-01T20:00:00.000Z",[15,14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKoWgHSWA1cc",{"minutes":650,"text":651},{"_id":1453,"path":1454,"title":1455,"description":1456,"meta":1457,"readingTime":1462},"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":1458,"date":1459,"published":12,"tags":1460,"author":16,"cover":1461,"video":11,"excerpt":11,"shortDesc":1456},"jdk-23-first-look","2024-09-12T17:00:00.000Z",[533],".\u002Fjdk-23.png",{"minutes":508,"text":509},{"_id":1464,"path":1465,"title":1466,"description":1467,"meta":1468,"readingTime":1474},"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":1469,"date":1470,"published":12,"tags":1471,"author":16,"cover":1473,"video":11,"excerpt":11,"shortDesc":1467},"claude-sonnet-spring-ai","2024-08-07T17:00:00.000Z",[1472,488,14],"Artificial Intelligence (AI)",".\u002Fclaude_sonnet_spring_ai_cover.png",{"minutes":719,"text":720},{"_id":1476,"path":1477,"title":1478,"description":1479,"meta":1480,"readingTime":1485},"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":1481,"date":1482,"published":12,"tags":1483,"author":16,"cover":1484,"video":11,"excerpt":11,"shortDesc":1479},"claude-sonnet-35","2024-08-06T17:00:00.000Z",[1472],".\u002Fclaude-sonnet-35.jpeg",{"minutes":1486,"text":1487},30,"30 min read",{"_id":1489,"path":1490,"title":1491,"description":1492,"meta":1493,"readingTime":1499},"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":1494,"date":1495,"published":12,"tags":1496,"author":16,"cover":1497,"video":1498,"excerpt":11,"shortDesc":1492},"ollama-web-ui","2024-08-05T09:00:00.000Z",[552],"ollama_web_ui.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FBzFafshQkWw",{"minutes":555,"text":556},{"_id":1501,"path":1502,"title":1503,"description":1504,"meta":1505,"readingTime":1512},"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":1506,"date":1507,"published":12,"tags":1508,"author":16,"cover":1510,"video":1511,"excerpt":11,"shortDesc":1504},"java-method-references","2024-08-01T09:00:00.000Z",[14,1509],"Functional Programming","java_method_references_with_me.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FDELCbBuCHHE",{"minutes":555,"text":556},{"_id":1514,"path":1515,"title":1516,"description":1517,"meta":1518,"readingTime":1525},"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":1519,"date":1520,"published":12,"tags":1521,"author":16,"cover":1522,"video":1523,"excerpt":11,"shortDesc":1524},"spring-boot-tailwind","2024-07-18T17:00:00.000Z",[15,646],".\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":569,"text":570},{"_id":1527,"path":1528,"title":1529,"description":1530,"meta":1531,"readingTime":1538},"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":1532,"date":1533,"published":12,"tags":1534,"author":16,"cover":1536,"video":1537,"excerpt":11,"shortDesc":1530},"java-gpt-4o","2024-07-10T17:00:00.000Z",[14,1535,1472],"OpenAI",".\u002Fjava-gpt-4o-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FEDJLHWcFvpQ",{"minutes":596,"text":597},{"_id":1540,"path":1541,"title":1542,"description":1543,"meta":1544,"readingTime":1550},"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":1545,"date":1546,"published":12,"tags":1547,"author":16,"cover":1548,"video":1549,"excerpt":11,"shortDesc":1543},"spring-ai-m1","2024-06-20T17:00:00.000Z",[15,488],".\u002Fspring_ai_m1_03.png","https:\u002F\u002Fyoutube.com\u002Fembed\u002FDe9a-TaJImI",{"minutes":733,"text":734},{"_id":1552,"path":1553,"title":1554,"description":1555,"meta":1556,"readingTime":1562},"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":1557,"date":1558,"published":12,"tags":1559,"author":16,"cover":1560,"video":11,"excerpt":11,"shortDesc":1561},"spring-io-2024","2024-06-03T17:00:00.000Z",[15],".\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":492,"text":493},{"_id":1564,"path":1565,"title":1566,"description":1567,"meta":1568,"readingTime":1574},"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":1569,"date":1570,"published":12,"tags":1571,"author":16,"cover":1573,"video":11,"excerpt":11,"shortDesc":1567},"java-champion","2024-01-21T17:00:00.000Z",[14,1572],"Meta",".\u002Fjava-champion-cover.png",{"minutes":596,"text":597},{"_id":1576,"path":1577,"title":1578,"description":1579,"meta":1580,"readingTime":1586},"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":1581,"date":1582,"published":12,"tags":1583,"author":16,"cover":1585,"video":11,"excerpt":11,"shortDesc":1579},"developer-advocate","2024-01-15T17:00:00.000Z",[1584],"DevRel",".\u002Fdeveloper-advocate.png",{"minutes":799,"text":800},{"_id":1588,"path":1589,"title":1590,"description":1591,"meta":1592,"readingTime":1597},"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":1593,"date":1594,"published":12,"tags":1595,"author":16,"cover":1596,"video":11,"excerpt":11,"shortDesc":1591},"happy-new-year-2024","2024-01-01T17:00:00.000Z",[1572],"photo-1701170633885-7209b1bf10ee.jpeg",{"minutes":1259,"text":1260},{"_id":1599,"path":1600,"title":1601,"description":1602,"meta":1603,"readingTime":1608},"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":1604,"date":1605,"published":12,"tags":1606,"author":16,"cover":1607,"video":11,"excerpt":11,"shortDesc":1602},"2023-year-in-review","2023-12-30T17:00:00.000Z",[1572],"behnam-norouzi-f_Bo19fq4Oc-unsplash.jpg",{"minutes":650,"text":651},{"_id":1610,"path":1611,"title":1612,"description":1613,"meta":1614,"readingTime":1619},"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":1615,"date":1616,"published":12,"tags":1617,"author":16,"cover":1618,"video":11,"excerpt":11,"shortDesc":1613},"spring-boot-3-2","2023-12-20T17:00:00.000Z",[15],"whats-new.jpeg",{"minutes":994,"text":995},{"_id":1621,"path":1622,"title":1623,"description":1624,"meta":1625,"readingTime":1631},"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":1626,"date":1627,"published":12,"tags":1628,"author":16,"cover":1629,"video":1630,"excerpt":11,"shortDesc":1624},"virtual-threads-spring-boot","2023-12-14T17:00:00.000Z",[14,15],"spring-boot-virtual-threads.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTHavIYnlwck",{"minutes":719,"text":720},{"_id":1633,"path":1634,"title":1635,"description":1636,"meta":1637,"readingTime":1643},"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":1638,"date":1639,"published":12,"tags":1640,"author":16,"cover":1641,"video":1642,"excerpt":11,"shortDesc":1636},"spring-boot-actuator","2023-09-17T17:00:00.000Z",[15],"spring-boot-actuator.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4OVe0MWgZ4k",{"minutes":650,"text":651},{"_id":1645,"path":1646,"title":1647,"description":1648,"meta":1649,"readingTime":1655},"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":1650,"date":1651,"published":12,"tags":1652,"author":16,"cover":1653,"video":1654,"excerpt":11,"shortDesc":1648},"spring-jdbc-client","2023-09-11T17:00:00.000Z",[15],".\u002Fspring-jdbc-client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJBu5GibEJ4k",{"minutes":853,"text":854},{"_id":1657,"path":1658,"title":1659,"description":1660,"meta":1661,"readingTime":1667},"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":1662,"date":1663,"published":12,"tags":1664,"author":16,"cover":1665,"video":1666,"excerpt":11,"shortDesc":1660},"rest-client-first-look","2023-09-08T17:00:00.000Z",[15],".\u002Fspring-boot-rest-client.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FUDNrJAvKc0k",{"minutes":522,"text":523},{"_id":1669,"path":1670,"title":1671,"description":1672,"meta":1673,"readingTime":1679},"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":1674,"date":1675,"published":12,"tags":1676,"author":16,"cover":1677,"video":1678,"excerpt":11,"shortDesc":1672},"pgadmin-docker-compose","2023-07-17T17:00:00.000Z",[15],".\u002FpgAdminDockerCompose.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FXDlgWyVfSMA",{"minutes":539,"text":540},{"_id":1681,"path":1682,"title":1683,"description":1684,"meta":1685,"readingTime":1691},"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":1686,"date":1687,"published":12,"tags":1688,"author":16,"cover":1689,"video":1690,"excerpt":11,"shortDesc":1684},"graphql-schema-mapping-inspection","2023-07-13T15:00:00.000Z",[15,835],".\u002Fgraphql-schema-inspection.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FYBPG0JbHvpY",{"minutes":719,"text":720},{"_id":1693,"path":1694,"title":1695,"description":1696,"meta":1697,"readingTime":1704},"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":1698,"date":1699,"published":12,"tags":1700,"author":16,"cover":1702,"video":1703,"excerpt":11,"shortDesc":1696},"aws-lambda-spring-boot-3","2023-06-30T15:00:00.000Z",[15,1701],"AWS",".\u002Faws-lambda-spring-boot-3-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FGGPPkUcHleQ",{"minutes":508,"text":509},{"_id":1706,"path":1707,"title":1708,"description":1709,"meta":1710,"readingTime":1717},"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":1711,"date":1712,"published":12,"tags":1713,"author":16,"cover":1714,"video":1715,"excerpt":11,"shortDesc":1716},"spring-http-interfaces-headers","2023-06-14T08:00:00.000Z",[876,15],".\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":1718,"text":1719},5,"5 min read",{"_id":1721,"path":1722,"title":1723,"description":1724,"meta":1725,"readingTime":1730},"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":1726,"date":1712,"published":12,"tags":1727,"author":16,"cover":1728,"video":1729,"excerpt":11,"shortDesc":1724},"spring-http-interfaces",[876,15],".\u002Fhttp-interfaces-crud.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F4U0hUyktpvg",{"minutes":582,"text":583},{"_id":1732,"path":1733,"title":1734,"description":1735,"meta":1736,"readingTime":1741},"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":1737,"date":1738,"published":12,"tags":1739,"author":16,"cover":1702,"video":1740,"excerpt":11,"shortDesc":1735},"aws-lambda-java-17","2023-05-19T08:00:00.000Z",[15,1701,14],"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FbxK4GscuVgs",{"minutes":596,"text":597},{"_id":1743,"path":1744,"title":1745,"description":1746,"meta":1747,"readingTime":1753},"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":1748,"date":1749,"published":12,"tags":1750,"author":16,"cover":1751,"video":1752,"excerpt":11,"shortDesc":1746},"spring-session-introduction","2023-05-03T08:00:00.000Z",[990],".\u002Fspring-session-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fk62bO-W6Sb0",{"minutes":650,"text":651},{"_id":1755,"path":1756,"title":1757,"description":1758,"meta":1759,"readingTime":1765},"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":1760,"date":1761,"published":12,"tags":1762,"author":16,"cover":1763,"video":1764,"excerpt":11,"shortDesc":1758},"spring-security-oauth2-login","2023-04-28T08:00:00.000Z",[990],".\u002Fspring-security-oauth2-login.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fus0VjFiHogo",{"minutes":609,"text":610},{"_id":1767,"path":1768,"title":1769,"description":1770,"meta":1771,"readingTime":1777},"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":1772,"date":1773,"published":12,"tags":1774,"author":16,"cover":1775,"video":1776,"excerpt":11,"shortDesc":1770},"spring-boot-docker-compose","2023-04-26T08:00:00.000Z",[15],".\u002Fspring-boot-docker-compose.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FlS1GwdIfk0c",{"minutes":609,"text":610},{"_id":1779,"path":1780,"title":1781,"description":1782,"meta":1783,"readingTime":1789},"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":1784,"date":1785,"published":12,"tags":1786,"author":16,"cover":1787,"video":1788,"excerpt":11,"shortDesc":1782},"multiple-spring-security-configs","2023-04-20T08:00:00.000Z",[990],".\u002Fspring-security-multiple-configurations.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPczgM2L3w60",{"minutes":719,"text":720},{"_id":1791,"path":1792,"title":1793,"description":1794,"meta":1795,"readingTime":1802},"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":1796,"date":1797,"published":12,"tags":1798,"author":16,"cover":1799,"video":1800,"excerpt":11,"shortDesc":1801},"graphql-client","2023-04-17T08:00:00.000Z",[15,835],".\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":555,"text":556},{"_id":1804,"path":1805,"title":1806,"description":1807,"meta":1808,"readingTime":1814},"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":1809,"date":1810,"published":12,"tags":1811,"author":16,"cover":1812,"video":1813,"excerpt":11,"shortDesc":1807},"virtual-threads-spring","2023-04-12T16:00:00.000Z",[15,835],".\u002Fvirtual-threads-spring-boot.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FIs5HXJhC3jE",{"minutes":609,"text":610},{"_id":1816,"path":1817,"title":1818,"description":1819,"meta":1820,"readingTime":1826},"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":1821,"date":1822,"published":12,"tags":1823,"author":16,"cover":1825,"video":11,"excerpt":11,"shortDesc":1819},"videotap","2023-03-31T16:00:00.000Z",[1824],"content",".\u002Fvideo-to-blogpost.png",{"minutes":1259,"text":1260},{"_id":1828,"path":1829,"title":1830,"description":1831,"meta":1832,"readingTime":1838},"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":1833,"date":1834,"published":12,"tags":1835,"author":16,"cover":1836,"video":1837,"excerpt":11,"shortDesc":1831},"graphql-mutations","2023-03-20T11:00:00.000Z",[835,15],".\u002Fgraphql-mutations.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fu3FFRq3-0CM",{"minutes":492,"text":493},{"_id":1840,"path":1841,"title":1842,"description":1843,"meta":1844,"readingTime":1850},"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":1845,"date":1846,"published":12,"tags":1847,"author":16,"cover":1848,"video":1849,"excerpt":11,"shortDesc":1843},"spring-security-lambda-dsl","2023-03-15T09:30:00.000Z",[990],".\u002Fspring-security-lambda-dsl.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FPWnEZh_t0WI",{"minutes":705,"text":706},{"_id":1852,"path":1853,"title":1854,"description":1855,"meta":1856,"readingTime":1863},"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":1857,"date":1858,"published":12,"tags":1859,"author":16,"cover":1862,"video":11,"excerpt":11,"shortDesc":1855},"notion-api-file-expired","2023-03-12T14:30:00.000Z",[1860,1861],"javascript","notion",".\u002Fnotion-cover-image.png",{"minutes":596,"text":597},{"_id":1865,"path":1866,"title":1867,"description":1868,"meta":1869,"readingTime":1875},"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":1870,"date":1871,"published":12,"tags":1872,"author":16,"cover":1873,"video":1874,"excerpt":11,"shortDesc":1868},"spring-boot-crash-course","2023-03-09T11:30:00.000Z",[15,876],".\u002Fspring-boot-crash-course-new-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FUgX5lgv4uVM",{"minutes":719,"text":720},{"_id":1877,"path":1878,"title":1879,"description":1880,"meta":1881,"readingTime":1889},"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":1882,"date":1883,"published":12,"tags":1884,"author":16,"cover":1887,"video":1888,"excerpt":11,"shortDesc":1880},"spring-shell-intro","2023-03-02T11:00:00.000Z",[1885,1886],"spring shell","Spring boot",".\u002Fspring-shell-introduction.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F8B0IjOIzicU",{"minutes":539,"text":540},{"_id":1891,"path":1892,"title":1893,"description":1894,"meta":1895,"readingTime":1902},"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":1896,"date":1897,"published":12,"tags":1898,"author":16,"cover":1900,"video":1901,"excerpt":11,"shortDesc":1894},"native-images-graalvm","2023-02-03T10:00:00.000Z",[533,1899],"graalvm",".\u002Fgraalvm-dynamic-new.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FRk4zfvVvRks",{"minutes":555,"text":556},{"_id":1904,"path":1905,"title":1906,"description":1907,"meta":1908,"readingTime":1914},"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":1909,"date":1910,"published":12,"tags":1911,"author":16,"cover":1912,"video":1913,"excerpt":11,"shortDesc":1907},"graphql-custom-scalars","2023-01-31T08:00:00.000Z",[15,835],".\u002Fgraphql-scalars-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fooknmgr4WiA",{"minutes":582,"text":583},{"_id":1916,"path":1917,"title":1918,"description":1919,"meta":1920,"readingTime":1926},"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":1921,"date":1922,"published":12,"tags":1923,"author":16,"cover":1924,"video":1925,"excerpt":11,"shortDesc":1919},"jakarta-ee-10-uuid","2023-01-27T10:00:00.000Z",[15],".\u002Fjakarta_ee_10_uuid.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FZWwqcH__kr4",{"minutes":650,"text":651},{"_id":1928,"path":1929,"title":1930,"description":1931,"meta":1932,"readingTime":1939},"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":1933,"date":1934,"published":12,"tags":1935,"author":16,"cover":1938,"video":11,"excerpt":11,"shortDesc":1931},"happy-new-year-2023","2023-01-01T10:00:00.000Z",[1936,1937],"meta","goals","kostiantyn-li-pTfOKdj8whk-unsplash.jpg",{"minutes":539,"text":540},{"_id":1941,"path":1942,"title":1943,"description":1944,"meta":1945,"readingTime":1950},"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":1946,"date":1947,"published":12,"tags":1948,"author":16,"cover":1949,"video":11,"excerpt":11,"shortDesc":1944},"2022-reflections","2022-12-29T16:00:00.000Z",[1936],".\u002Fjose-m-reyes-0GBxtiFvzXE-unsplash.jpg",{"minutes":650,"text":651},{"_id":1952,"path":1953,"title":1954,"description":1955,"meta":1956,"readingTime":1962},"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":1957,"date":1958,"published":12,"tags":1959,"author":16,"cover":1960,"video":1961,"excerpt":11,"shortDesc":1955},"spring-proxy-bean-methods","2022-12-19T10:00:00.000Z",[15],".\u002Fproxy-bean-methods.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FVoK6-OiSPu4",{"minutes":650,"text":651},{"_id":1964,"path":1965,"title":1966,"description":1967,"meta":1968,"readingTime":1974},"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":1969,"date":1970,"published":12,"tags":1971,"author":16,"cover":1972,"video":1973,"excerpt":11,"shortDesc":1967},"spring-response-entity","2022-12-16T12:00:00.000Z",[15],".\u002Fspring-response-entity.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FB5Zrn1Tzyqw",{"minutes":1259,"text":1260},{"_id":1976,"path":1977,"title":1978,"description":1979,"meta":1980,"readingTime":1986},"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":1981,"date":1982,"published":12,"tags":1983,"author":16,"cover":1984,"video":1985,"excerpt":11,"shortDesc":1979},"aws-lambda-snapstart-spring","2022-12-02T08:00:00.000Z",[1701,15],".\u002Faws_lambda_snapstart.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FisS6m6aj_Ak",{"minutes":349,"text":1987},"4 min read",{"_id":1989,"path":1990,"title":1991,"description":1992,"meta":1993,"readingTime":1999},"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":1994,"date":1995,"published":12,"tags":1996,"author":16,"cover":1997,"video":1998,"excerpt":11,"shortDesc":1992},"spring-security-6","2022-12-01T16:00:00.000Z",[15,990],".\u002Fspring_security_6.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FTDOHbK39Oxg",{"minutes":1259,"text":1260},{"_id":2001,"path":2002,"title":2003,"description":2004,"meta":2005,"readingTime":2011},"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":2006,"date":2007,"published":12,"tags":2008,"author":16,"cover":2009,"video":2010,"excerpt":11,"shortDesc":2004},"aws-lambda-java-core","2022-11-10T08:00:00.000Z",[1701,533],".\u002Faws-lambda-java-core.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FkyWllXOGMWQ",{"minutes":719,"text":720},{"_id":2013,"path":2014,"title":2015,"description":2016,"meta":2017,"readingTime":2023},"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":2018,"date":2019,"published":12,"tags":2020,"author":16,"cover":2021,"video":2022,"excerpt":11,"shortDesc":2016},"hello-aws-lambda-java","2022-11-09T08:00:00.000Z",[1701,533],".\u002Fhello-aws-lambda.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMaHxZEBRcT4",{"minutes":609,"text":610},{"_id":2025,"path":2026,"title":2027,"description":2028,"meta":2029,"readingTime":2035},"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":2030,"date":2031,"published":12,"tags":2032,"author":16,"cover":2033,"video":2034,"excerpt":11,"shortDesc":2028},"domain-class-converter","2022-09-29T11:00:00.000Z",[15,686],".\u002Fdomain-class-converter-thumbnail-small.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F_QBe2ZiXV-0",{"minutes":596,"text":597},{"_id":2037,"path":2038,"title":2039,"description":2040,"meta":2041,"readingTime":2047},"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":2042,"date":2043,"published":12,"tags":2044,"author":16,"cover":2045,"video":2046,"excerpt":11,"shortDesc":2040},"spring-security-cors","2022-09-22T08:00:00.000Z",[990],".\u002Fss-cors-thumbnail.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FHRwlT_etr60",{"minutes":719,"text":720},{"_id":2049,"path":2050,"title":2051,"description":2052,"meta":2053,"readingTime":2059},"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":2054,"date":2055,"published":12,"tags":2056,"author":16,"cover":2057,"video":2058,"excerpt":11,"shortDesc":2052},"spring-security-jwt","2022-09-09T16:00:00.000Z",[15,990],"spring-security-jwt-cover.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FKYNR5js2cXE",{"minutes":2060,"text":2061},35,"35 min read",{"_id":2063,"path":2064,"title":2065,"description":2066,"meta":2067,"readingTime":2074},"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":2068,"date":2069,"published":12,"tags":2070,"author":16,"cover":2072,"video":2073,"excerpt":11,"shortDesc":2066},"spring-for-graphql","2022-05-17T16:00:00.000Z",[146,2071],"graphql",".\u002Fspring-for-graphql-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F3PCNqXrU-2g",{"minutes":2075,"text":2076},39,"39 min read",{"_id":2078,"path":2079,"title":2080,"description":2081,"meta":2082,"readingTime":2088},"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":2083,"date":2084,"published":12,"tags":2085,"author":16,"cover":2086,"video":2087,"excerpt":11,"shortDesc":2081},"spring-data-jpa-pagination","2022-05-12T16:00:00.000Z",[1054,686],".\u002Fspring-data-jpa-pagination-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Foq-c3D67WqM",{"minutes":853,"text":854},{"_id":2090,"path":2091,"title":2092,"description":2093,"meta":2094,"readingTime":2100},"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":2095,"date":2096,"published":12,"tags":2097,"author":16,"cover":2098,"video":2099,"excerpt":11,"shortDesc":2093},"spring-boot-value-annotation","2022-05-11T09:30:00.000Z",[146],".\u002Fspring-boot-value-annotation-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvLSyFktOm4g",{"minutes":650,"text":651},{"_id":2102,"path":2103,"title":2104,"description":2105,"meta":2106,"readingTime":2111},"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":2107,"date":2108,"published":12,"tags":2109,"author":16,"cover":2110,"video":11,"excerpt":11,"shortDesc":2105},"im-joining-vmware","2022-01-24T08:00:00.000Z",[1936],".\u002Fim-joining-vmware-cover.png",{"minutes":582,"text":583},{"_id":2113,"path":2114,"title":2115,"description":2116,"meta":2117,"readingTime":2122},"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":2118,"date":2119,"published":12,"tags":2120,"author":16,"cover":2121,"video":11,"excerpt":11,"shortDesc":2116},"happy-new-year-2022","2022-01-01T11:00:00.000Z",[1937],".\u002Fkelly-sikkema-PXl_S152jNM-unsplash.jpg",{"minutes":609,"text":610},{"_id":2124,"path":2125,"title":2126,"description":2127,"meta":2128,"readingTime":2135},"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":2129,"date":2130,"published":12,"tags":2131,"author":16,"cover":2133,"video":2134,"excerpt":11,"shortDesc":2127},"macbook-pro-m1-max-review","2021-11-15T21:00:00.000Z",[2132],"Apple",".\u002Fmacbook-pro-review-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Ft-hEOyUnaXQ",{"minutes":650,"text":651},{"_id":2137,"path":2138,"title":2139,"description":2140,"meta":2141,"readingTime":2147},"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":2142,"date":2143,"published":12,"tags":2144,"author":16,"cover":2145,"video":2146,"excerpt":11,"shortDesc":2140},"github-copilot-java-developers","2021-11-08T10:00:00.000Z",[533,146],".\u002Fgithub_copilot_thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F97C3fQqzj-I",{"minutes":321,"text":2148},"2 min read",{"_id":2150,"path":2151,"title":2152,"description":2153,"meta":2154,"readingTime":2161},"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":2155,"date":2156,"published":12,"tags":2157,"author":16,"cover":2160,"video":11,"excerpt":11,"shortDesc":2153},"spring-one-2021","2021-08-30T19:45:43.204Z",[2158,146,2159],"conference","vue",".\u002Fspring-one-2021-cover.png",{"minutes":338,"text":2162},"3 min read",{"_id":2164,"path":2165,"title":2166,"description":2167,"meta":2168,"readingTime":2174},"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":2169,"date":2170,"published":12,"tags":2171,"author":16,"cover":2172,"video":2173,"excerpt":11,"shortDesc":2167},"full-stack-java","2021-01-22T08:00:00.000Z",[533,2159],".\u002Ffull-stack-java-spring-vue.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F2G6r2f40Lps",{"minutes":799,"text":800},{"_id":2176,"path":2177,"title":2178,"description":2179,"meta":2180,"readingTime":2185},"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":2181,"date":2182,"published":12,"tags":2183,"author":16,"cover":2184,"video":11,"excerpt":11,"shortDesc":2179},"network-throttling","2021-01-08T09:30:00.000Z",[1860,2159,533],".\u002Fnetwork-throttling-cover.png",{"minutes":539,"text":540},{"_id":2187,"path":2188,"title":2189,"description":2190,"meta":2191,"readingTime":2196},"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":2192,"date":2193,"published":12,"tags":2194,"author":16,"cover":2195,"video":11,"excerpt":11,"shortDesc":2190},"happy-new-year-2021","2021-01-07T11:30:00.000Z",[1936],"isaac-smith-YwrdbQw0oco-unsplash.jpg",{"minutes":705,"text":706},{"_id":2198,"path":2199,"title":2200,"description":2201,"meta":2202,"readingTime":2207},"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":2203,"date":2204,"published":12,"tags":2205,"author":16,"cover":2206,"video":11,"excerpt":11,"shortDesc":2201},"reassign-standard-in-out","2020-12-16T15:17:39.619Z",[533],".\u002Ftesting-standard-in-out-java-cover.png",{"minutes":719,"text":720},{"_id":2209,"path":2210,"title":2211,"description":2212,"meta":2213,"readingTime":2219},"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":2214,"date":2215,"published":12,"tags":2216,"author":16,"cover":2218,"video":11,"excerpt":11,"shortDesc":2212},"interactive-learning-from-oreilly","2020-07-30T12:50:24.664Z",[533,146,2217],"maven",".\u002Foreilly-interactive-learning-cover.png",{"minutes":349,"text":1987},{"_id":2221,"path":2222,"title":2223,"description":2224,"meta":2225,"readingTime":2231},"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":2226,"date":2227,"published":12,"tags":2228,"author":16,"cover":2229,"video":2230,"excerpt":11,"shortDesc":2224},"spring-boot-rest-service","2020-06-04T08:00:00.000Z",[15],".\u002Fspring-boot-rest-service.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMWLe1tqPmUo",{"minutes":555,"text":556},{"_id":2233,"path":2234,"title":2235,"description":2236,"meta":2237,"readingTime":2244},"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":2238,"date":2239,"published":12,"tags":2240,"author":16,"cover":2243,"video":11,"excerpt":11,"shortDesc":2236},"deno-standard-in-out","2020-06-03T20:00:00.500Z",[2241,2242],"Deno","JavaScript",".\u002Fdeno_stdin_stdout-cover.png",{"minutes":539,"text":540},{"_id":2246,"path":2247,"title":2248,"description":2249,"meta":2250,"readingTime":2256},"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":2251,"date":2252,"published":12,"tags":2253,"author":16,"cover":2255,"video":11,"excerpt":11,"shortDesc":2249},"hello-deno","2020-05-29T12:00:00.000Z",[2254,1860],"deno",".\u002Fhello-deno-cover.png",{"minutes":2257,"text":2258},29,"29 min read",{"_id":2260,"path":2261,"title":2262,"description":2263,"meta":2264,"readingTime":2271},"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":2265,"date":2266,"published":12,"tags":2267,"author":16,"cover":2270,"video":11,"excerpt":11,"shortDesc":2263},"website-redesign-lessons-learned","2020-05-16T17:24:14.760Z",[2268,2159,2269],"css","gridsome",".\u002Fwebsite-redesign-lessons-learned-cover.png",{"minutes":596,"text":597},{"_id":2273,"path":2274,"title":2275,"description":2276,"meta":2277,"readingTime":2283},"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":2278,"date":2279,"published":12,"tags":2280,"author":16,"cover":2281,"video":2282,"excerpt":11,"shortDesc":2276},"spring-unit-vs-integration-test","2020-03-09T10:00:00.000Z",[15],".\u002Funit-vs-int.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FpNiRNRgi5Ws",{"minutes":650,"text":651},{"_id":2285,"path":2286,"title":2287,"description":2288,"meta":2289,"readingTime":2295},"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":2290,"date":2291,"published":12,"tags":2292,"author":16,"cover":2293,"video":2294,"excerpt":11,"shortDesc":2288},"vue3-ref-vs-reactive","2020-02-12T16:27:46.472Z",[2159],".\u002Fvue3-ref-vs-reactive-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FcRwG96MOHp0",{"minutes":2257,"text":2258},{"_id":2297,"path":2298,"title":2299,"description":2300,"meta":2301,"readingTime":2309},"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":2302,"date":2303,"published":12,"tags":2304,"author":16,"cover":2307,"video":2308,"excerpt":11,"shortDesc":2300},"vue-3-alpha-cli-plugin","2020-01-17T13:58:29.936Z",[2305,2306],"vue3","screencast",".\u002Fstart-using-vue3-today-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002Fo-jiS563yI8",{"minutes":1718,"text":1719},{"_id":2311,"path":2312,"title":2313,"description":2314,"meta":2315,"readingTime":2320},"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":2316,"date":2317,"published":12,"tags":2318,"author":16,"cover":2319,"video":11,"excerpt":11,"shortDesc":2314},"codemash-2020-recap","2020-01-13T14:30:00.000Z",[2158,2159],".\u002Fcodemash-recap-cover.png",{"minutes":1259,"text":1260},{"_id":2322,"path":2323,"title":2324,"description":2325,"meta":2326,"readingTime":2331},"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":2327,"date":2328,"published":12,"tags":2329,"author":16,"cover":2330,"video":11,"excerpt":11,"shortDesc":2325},"codemash-2020","2020-01-09T09:00:00.000Z",[2159],".\u002Fcodemash-vue3.png",{"minutes":349,"text":1987},{"_id":2333,"path":2334,"title":2335,"description":2336,"meta":2337,"readingTime":2342},"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":2338,"date":2339,"published":12,"tags":2340,"author":16,"cover":2341,"video":11,"excerpt":11,"shortDesc":2336},"up-and-running-with-vuejs","2019-12-19T15:30:00.000Z",[2159],".\u002Fup-and-running-with-vuejs-cover.png",{"minutes":349,"text":1987},{"_id":2344,"path":2345,"title":2346,"description":2347,"meta":2348,"readingTime":2353},"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":2349,"date":2350,"published":12,"tags":2351,"author":16,"cover":2352,"video":11,"excerpt":11,"shortDesc":2347},"spring-boot-visual-studio-code","2019-11-21T11:28:07.266Z",[15,533],".\u002Fspring-boot-in-vscode.png",{"minutes":321,"text":2148},{"_id":2355,"path":2356,"title":2357,"description":2358,"meta":2359,"readingTime":2364},"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":2360,"date":2361,"published":12,"tags":2362,"author":16,"cover":2363,"video":11,"excerpt":11,"shortDesc":2358},"unit-testing-vue-part-03","2019-10-29T15:30:00.000Z",[2159],".\u002Funit-testing-vue-mastery-03-cover.jpg",{"minutes":160,"text":2365},"1 min read",{"_id":2367,"path":2368,"title":2369,"description":2370,"meta":2371,"readingTime":2376},"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":2372,"date":2373,"published":12,"tags":2374,"author":16,"cover":2375,"video":11,"excerpt":11,"shortDesc":2370},"unit-testing-vue-part-02","2019-10-15T12:33:53.592Z",[2159],".\u002Funit-testing-part-02-cover.jpg",{"minutes":160,"text":2365},{"_id":2378,"path":2379,"title":2380,"description":2381,"meta":2382,"readingTime":2387},"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":2383,"date":2384,"published":12,"tags":2385,"author":16,"cover":2386,"video":11,"excerpt":11,"shortDesc":2381},"unit-testing-vue-part-01","2019-10-01T17:00:00.000Z",[2159],"unit-testing-vue-mastery-01.png",{"minutes":160,"text":2365},{"_id":2389,"path":2390,"title":2391,"description":2392,"meta":2393,"readingTime":2399},"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":2394,"date":2395,"published":12,"tags":2396,"author":16,"cover":2397,"video":2398,"excerpt":11,"shortDesc":2392},"css-grid-generator","2019-08-08T18:13:57.456Z",[2268,2159],".\u002Fcss-grid-generator-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FZopBBEs9TPg",{"minutes":690,"text":691},{"_id":2401,"path":2402,"title":2403,"description":2404,"meta":2405,"readingTime":2411},"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":2406,"date":2407,"published":12,"tags":2408,"author":16,"cover":2410,"video":11,"excerpt":11,"shortDesc":2404},"website-new-features-improvements","2019-07-23T11:20:30.619Z",[2409,2159,2269],"blog",".\u002Fwebsite-new-features-cover.png",{"minutes":799,"text":800},{"_id":2413,"path":2414,"title":2415,"description":2416,"meta":2417,"readingTime":2423},"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":2418,"date":2419,"published":12,"tags":2420,"author":16,"cover":2422,"video":11,"excerpt":11,"shortDesc":2416},"vuepress-cookies","2019-06-13T10:27:46.175Z",[2159,2421],"vuepress",".\u002Fvuepress-cookies-cover.png",{"minutes":799,"text":800},{"_id":2425,"path":2426,"title":2427,"description":2428,"meta":2429,"readingTime":2435},"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":2430,"date":2431,"published":12,"tags":2432,"author":16,"cover":2433,"video":2434,"excerpt":11,"shortDesc":2428},"triggering-events-router-vue","2019-06-05T20:13:17.445Z",[2159],".\u002Ftriggering-events-router-vue-cover.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FJwccQYpsE2Q",{"minutes":582,"text":583},{"_id":2437,"path":2438,"title":2439,"description":2440,"meta":2441,"readingTime":2447},"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":2442,"date":2443,"published":12,"tags":2444,"author":16,"cover":2446,"video":11,"excerpt":11,"shortDesc":2440},"escape-backtick-markdown","2019-05-31T18:32:41.710Z",[2445,2409],"markdown",".\u002Fescape-backtick-markdown-cover.png",{"minutes":1718,"text":1719},{"_id":2449,"path":2450,"title":2451,"description":2452,"meta":2453,"readingTime":2460},"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":2454,"date":2455,"published":12,"tags":2456,"author":16,"cover":2459,"video":11,"excerpt":11,"shortDesc":2452},"vue-cli-error","2019-05-17T15:25:36.871Z",[2159,2457,2458,1860],"npm","nodejs","vue-cli-validation-error.png",{"minutes":650,"text":651},{"_id":2462,"path":2463,"title":2464,"description":2465,"meta":2466,"readingTime":2472},"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":2467,"date":2468,"published":12,"tags":2469,"author":16,"cover":2471,"video":11,"excerpt":11,"shortDesc":2465},"run-vue-visual-studio-code","2019-05-15T14:19:36.459Z",[2159,2457,2470,1860],"vscode",".\u002Frun-vue-visual-studio-code-cover.png",{"minutes":705,"text":706},{"_id":2474,"path":2475,"title":2476,"description":2477,"meta":2478,"readingTime":2485},"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":2479,"date":2480,"published":12,"tags":2481,"author":16,"cover":2484,"video":11,"excerpt":11,"shortDesc":2477},"what-you-can-learn-from-live-coders","2019-05-10T18:42:50.066Z",[2482,2483],"twitch","youtube",".\u002Flive-coders-cover.png",{"minutes":596,"text":597},{"_id":2487,"path":2488,"title":2489,"description":2490,"meta":2491,"readingTime":2497},"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":2492,"date":2493,"published":12,"tags":2494,"author":16,"cover":2496,"video":11,"excerpt":11,"shortDesc":2490},"codesandbox-custom-theme","2019-05-08T01:56:43.680Z",[2495],"codesandbox",".\u002Fcodesandbox-custom-theme-cover.png",{"minutes":349,"text":1987},{"_id":2499,"path":2500,"title":2501,"description":2502,"meta":2503,"readingTime":2508},"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":2504,"date":2505,"published":12,"tags":2506,"author":16,"cover":2507,"video":11,"excerpt":11,"shortDesc":2502},"gridsome-codesandbox-plugin","2019-05-02T15:30:43.839Z",[2159,2269,2495],".\u002Fgridsome-codesandbox-plugin-cover.png",{"minutes":1163,"text":1164},{"_id":2510,"path":2511,"title":2512,"description":2513,"meta":2514,"readingTime":2519},"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":2515,"date":2516,"published":12,"tags":2517,"author":16,"cover":2518,"video":11,"excerpt":11,"shortDesc":2513},"up-and-running-with-vue","2019-04-30T19:38:42.927Z",[2159,1860],".\u002Fup-and-running-with-vue-cover.png",{"minutes":1163,"text":1164},{"_id":2521,"path":2522,"title":2523,"description":2524,"meta":2525,"readingTime":2531},"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":2526,"date":2527,"published":12,"tags":2528,"author":16,"cover":2530,"video":11,"excerpt":11,"shortDesc":2524},"my-new-blog-post-workflow","2019-04-25T13:53:35.054Z",[2529],"blogging","super-snapper-zIwAchjDirM-unsplash.jpg",{"minutes":719,"text":720},{"_id":2533,"path":2534,"title":2535,"description":2536,"meta":2537,"readingTime":2543},"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":2538,"date":2539,"published":12,"tags":2540,"author":16,"cover":2542,"video":11,"excerpt":11,"shortDesc":2536},"gridsome-blog-post-generator","2019-04-23T19:28:51.186Z",[2541],"Vue","nick-morrison-FHnnjk1Yj7Y-unsplash.jpg",{"minutes":492,"text":493},{"_id":2545,"path":2546,"title":2547,"description":2548,"meta":2549,"readingTime":2555},"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":2550,"date":2551,"published":12,"tags":2552,"author":16,"cover":2554,"video":11,"excerpt":11,"shortDesc":2548},"npm-scripts-parallel","2019-04-19T16:51:56.537Z",[2457,2553,1860],"node",".\u002Fnpm-parallel-cover.png",{"minutes":555,"text":556},{"_id":2557,"path":2558,"title":2559,"description":2560,"meta":2561,"readingTime":2566},"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":2562,"date":2563,"published":12,"tags":2564,"author":16,"cover":2565,"video":11,"excerpt":11,"shortDesc":2560},"vue-tips-avoid-direct-dom-manipulation","2019-04-18T20:24:32.502Z",[2159,1860],".\u002Fvue-dom.png",{"minutes":705,"text":706},{"_id":2568,"path":2569,"title":2570,"description":2571,"meta":2572,"readingTime":2577},"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":2573,"date":2574,"published":12,"tags":2575,"author":16,"cover":2576,"video":11,"excerpt":11,"shortDesc":2571},"dont-call-it-a-comeback","2019-04-11T11:38:39.435Z",[2529],".\u002Fpersonal-blog-4b0867c8-0c1b-421c-afaf-7fc7e7986a77.png",{"minutes":705,"text":706},{"_id":2579,"path":2580,"title":2581,"description":2582,"meta":2583,"readingTime":2588},"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":2584,"date":2585,"published":12,"tags":2586,"author":16,"cover":2587,"video":11,"excerpt":11,"shortDesc":2582},"adding-twitter-cards-to-gridsome","2019-04-09T19:21:53.368Z",[2159,2269],".\u002Ftwittter-cards-gridsome-cover-936ee6d4-220e-4800-873c-9d700fa44469.png",{"minutes":733,"text":734},{"_id":2590,"path":2591,"title":2592,"description":2593,"meta":2594,"readingTime":2599},"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":2595,"date":2596,"published":12,"tags":2597,"author":16,"cover":2598,"video":11,"excerpt":11,"shortDesc":2593},"find-max-array-objects-javascript","2019-03-14T10:59:53.416Z",[1860],"joshua-aragon-EaB4Ml7C7fE-unsplash.jpg",{"minutes":596,"text":597},{"_id":2601,"path":2602,"title":2603,"description":2604,"meta":2605,"readingTime":2610},"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":2606,"date":2607,"published":12,"tags":2608,"author":16,"cover":2609,"video":11,"excerpt":11,"shortDesc":2604},"spring-initializr-fresh-look","2019-03-07 17:00:00",[146],".\u002Fspring-init-cover.png",{"minutes":349,"text":1987},{"_id":2612,"path":2613,"title":2614,"description":2615,"meta":2616,"readingTime":2621},"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":2617,"date":2618,"published":12,"tags":2619,"author":16,"cover":2620,"video":11,"excerpt":11,"shortDesc":2615},"vue-event-arguments","2019-03-04 10:00:00",[2159,1860],".\u002Fvue-event-arguments.png",{"minutes":1351,"text":1352},{"_id":2623,"path":2624,"title":2625,"description":2626,"meta":2627,"readingTime":2632},"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":2628,"date":2629,"published":12,"tags":2630,"author":16,"cover":2631,"video":11,"excerpt":11,"shortDesc":2626},"node-recursive-directories","2019-02-21 08:00:00",[2553,1860],"node-multiple-directories.png",{"minutes":719,"text":720},{"_id":2634,"path":2635,"title":2636,"description":2637,"meta":2638,"readingTime":2644},"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":2639,"date":2640,"published":12,"tags":2641,"author":16,"cover":2643,"video":11,"excerpt":11,"shortDesc":2637},"twitter-cards-meta-tags","2019-02-18 22:00:00",[2642],"html",".\u002Ftwitter-cards.png",{"minutes":705,"text":706},{"_id":2646,"path":2647,"title":2648,"description":2649,"meta":2650,"readingTime":2655},"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":2651,"date":2652,"published":12,"tags":2653,"author":16,"cover":2654,"video":11,"excerpt":11,"shortDesc":2649},"html-template-tag","2019-02-13 22:30:00",[2642,1860,2159],".\u002Fhtml-template-cover.png",{"minutes":799,"text":800},{"_id":2657,"path":2658,"title":2659,"description":2660,"meta":2661,"readingTime":2666},"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":2662,"date":2663,"published":12,"tags":2664,"author":16,"cover":2665,"video":11,"excerpt":11,"shortDesc":2660},"creating-your-first-npm-package","2019-02-10 11:00:00",[2553,2457,1860],".\u002Fnpm_cover.png",{"minutes":1351,"text":1352},{"_id":2668,"path":2669,"title":2670,"description":2671,"meta":2672,"readingTime":2677},"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":2673,"date":2674,"published":12,"tags":2675,"author":11,"cover":2676,"video":11,"excerpt":11,"shortDesc":2671},"hello-gridsome","2019-01-31 10:00:00",[2159],".\u002Fgridsome.png",{"minutes":596,"text":597},{"_id":2679,"path":2680,"title":2681,"description":2681,"meta":2682,"readingTime":2687},"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":2683,"date":2684,"published":12,"tags":2685,"author":11,"cover":2686,"video":11,"excerpt":11,"shortDesc":2681},"happy-new-year-my-2019-goals","2019-01-01T08:38:10-05:00",[1937],".\u002F2019-cover.png",{"minutes":609,"text":610},{"_id":2689,"path":2690,"title":2691,"description":2691,"meta":2692,"readingTime":2697},"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":2693,"date":2694,"published":12,"tags":2695,"author":11,"cover":2696,"video":11,"excerpt":11,"shortDesc":2691},"my-2018-year-in-review","2018-12-24T08:52:12-05:00",[1937],".\u002F2018-cover.png",{"minutes":609,"text":610},{"_id":2699,"path":2700,"title":2701,"description":2701,"meta":2702,"readingTime":2709},"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":2703,"date":2704,"published":12,"tags":2705,"author":11,"cover":2708,"video":11,"excerpt":11,"shortDesc":2701},"macbook-pro-setup-my-setup-with-detailed-instructions","2018-12-21T14:17:22-05:00",[2706,2707],"mac","web development",".\u002Ftobias-lystad-606045-unsplash-1024x683.jpg",{"minutes":522,"text":523},{"_id":2711,"path":2712,"title":2713,"description":2713,"meta":2714,"readingTime":2720},"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":2715,"date":2716,"published":12,"tags":2717,"author":11,"cover":2719,"video":11,"excerpt":11,"shortDesc":2713},"new-course-getting-started-with-spring-boot-2","2018-11-20T12:39:53-05:00",[2718],"courses",".\u002Fteachable_course_graphic-760x428.png",{"minutes":338,"text":2162},{"_id":2722,"path":2723,"title":2724,"description":2724,"meta":2725,"readingTime":2731},"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":2726,"date":2727,"published":12,"tags":2728,"author":11,"cover":2730,"video":11,"excerpt":11,"shortDesc":2724},"cleveland-women-in-tech-conference-recap","2018-11-06T11:59:51-05:00",[2158,2729],"presentation",".\u002FIMG_4467.jpg",{"minutes":609,"text":610},{"_id":2733,"path":2734,"title":2735,"description":2735,"meta":2736,"readingTime":2741},"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":2737,"date":2738,"published":12,"tags":2739,"author":11,"cover":2740,"video":11,"excerpt":11,"shortDesc":2735},"cleveland-women-in-tech-presentation","2018-11-05T06:50:29-05:00",[2158,2729],".\u002Fmerherstory-cover.png",{"minutes":338,"text":2162},{"_id":2743,"path":2744,"title":2745,"description":2745,"meta":2746,"readingTime":2752},"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":2747,"date":2748,"published":12,"tags":2749,"author":11,"cover":2751,"video":11,"excerpt":11,"shortDesc":2745},"i-am-joining-tech-elevator","2018-09-07T01:00:58-04:00",[2750],"Tech Elevator",".\u002FStacked-Logo-760x202.jpg",{"minutes":1718,"text":1719},{"_id":2754,"path":2755,"title":2756,"description":2756,"meta":2757,"readingTime":2763},"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":2758,"date":2759,"published":12,"tags":2760,"author":11,"cover":2761,"video":2762,"excerpt":11,"shortDesc":2756},"java-development-2018","2018-04-25T06:39:22-04:00",[533],".\u002Fjava_development_in_2018-760x428","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FMLXj0hd3usk",{"minutes":349,"text":1987},{"_id":2765,"path":2766,"title":2767,"description":2767,"meta":2768,"readingTime":2773},"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":2769,"date":2770,"published":12,"tags":2771,"author":11,"cover":2772,"video":11,"excerpt":11,"shortDesc":2767},"what-is-new-spring-boot-2","2018-03-01T06:47:52-05:00",[533,146],".\u002Fpexels-photo-273238-2-760x507.jpeg",{"minutes":635,"text":636},{"_id":2775,"path":2776,"title":2777,"description":2777,"meta":2778,"readingTime":2782},"blog\u002Fblog\u002F2018\u002F01\u002F01\u002Fmy-2018-goals.md","\u002Fblog\u002F2018\u002F01\u002F01\u002Fmy-2018-goals","Happy New Year!!! My 2018 Goals",{"slug":2779,"date":2780,"published":12,"tags":2781,"author":11,"cover":2696,"video":11,"excerpt":11,"shortDesc":2777},"my-2018-goals","2018-01-01T08:50:40-05:00",[1937],{"minutes":539,"text":540},{"_id":2784,"path":2785,"title":2786,"description":2786,"meta":2787,"readingTime":2792},"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":2788,"date":2789,"published":12,"tags":2790,"author":11,"cover":2791,"video":11,"excerpt":11,"shortDesc":2786},"my-2017-year-in-review","2017-12-29T09:14:08-05:00",[1937],".\u002Fpexels-photo-282919-760x571.jpeg",{"minutes":349,"text":1987},{"_id":2794,"path":2795,"title":2796,"description":2796,"meta":2797,"readingTime":2802},"blog\u002Fblog\u002F2017\u002F12\u002F08\u002Fgetting-started-with-java.md","\u002Fblog\u002F2017\u002F12\u002F08\u002Fgetting-started-with-java","Getting Started with Java course",{"slug":2798,"date":2799,"published":12,"tags":2800,"author":11,"cover":2801,"video":11,"excerpt":11,"shortDesc":2796},"getting-started-with-java","2017-12-08T09:00:23-05:00",[533],".\u002Fapple-computer-desk-18105.jpg",{"minutes":1259,"text":1260},{"_id":2804,"path":2805,"title":2806,"description":2806,"meta":2807,"readingTime":2812},"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":2808,"date":2809,"published":12,"tags":2810,"author":11,"cover":2811,"video":11,"excerpt":11,"shortDesc":2806},"angular-4-java-developers-course-now-live","2017-11-08T16:15:32-05:00",[533,146],".\u002Fgreetings_java_hipsters-760x525.png",{"minutes":1259,"text":1260},{"_id":2814,"path":2815,"title":2816,"description":2816,"meta":2817,"readingTime":2823},"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":2818,"date":2819,"published":12,"tags":2820,"author":11,"cover":2822,"video":11,"excerpt":11,"shortDesc":2816},"compile-groovy-java-gradle-build","2017-10-04T08:32:40-04:00",[2821],"groovy",".\u002F614px-Groovy-logo.svg_-e1459476180685.png",{"minutes":555,"text":556},{"_id":2825,"path":2826,"title":2827,"description":2827,"meta":2828,"readingTime":2833},"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":2829,"date":2830,"published":12,"tags":2831,"author":11,"cover":2832,"video":11,"excerpt":11,"shortDesc":2827},"get-hot-java-9","2017-09-22T08:21:00-04:00",[533],".\u002F2017-09-22_07-39-27-760x504.png",{"minutes":349,"text":1987},{"_id":2835,"path":2836,"title":2837,"description":2837,"meta":2838,"readingTime":2844},"blog\u002Fblog\u002F2017\u002F09\u002F11\u002Fmonolithic-vs-microservices.md","\u002Fblog\u002F2017\u002F09\u002F11\u002Fmonolithic-vs-microservices","When to use Microservices over Monolithic Architecture",{"slug":2839,"date":2840,"published":12,"tags":2841,"author":11,"cover":2843,"video":11,"excerpt":11,"shortDesc":2837},"monolithic-vs-microservices","2017-09-11T08:30:19-04:00",[2842,146],"Software Development",".\u002Fpexels-photo-325229-760x266.jpeg",{"minutes":1718,"text":1719},{"_id":2846,"path":2847,"title":2848,"description":2848,"meta":2849,"readingTime":2855},"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":2850,"date":2851,"published":12,"tags":2852,"author":11,"cover":2854,"video":11,"excerpt":11,"shortDesc":2848},"upgrade-new-angular-command-line-interface-cli-1-3-release","2017-09-06T09:07:30-04:00",[2853],"Angular",".\u002Fpexels-photo-247791-1024x562.png",{"minutes":1718,"text":1719},{"_id":2857,"path":2858,"title":2859,"description":2859,"meta":2860,"readingTime":2865},"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":2861,"date":2862,"published":12,"tags":2863,"author":11,"cover":2864,"video":11,"excerpt":11,"shortDesc":2859},"groovy-happens-assign-biginteger-integer","2017-08-30T07:39:40-04:00",[2821,533],".\u002Fcodes-coding.jpg",{"minutes":338,"text":2162},{"_id":2867,"path":2868,"title":2869,"description":2869,"meta":2870,"readingTime":2875},"blog\u002Fblog\u002F2017\u002F08\u002F28\u002Fusing-jhipster-development-mode.md","\u002Fblog\u002F2017\u002F08\u002F28\u002Fusing-jhipster-development-mode","Using JHipster in Development mode",{"slug":2871,"date":2872,"published":12,"tags":2873,"author":11,"cover":2874,"video":11,"excerpt":11,"shortDesc":2869},"using-jhipster-development-mode","2017-08-28T09:30:30-04:00",[2853,146],".\u002Fwallpaper-001-2560x1440-760x428.png",{"minutes":338,"text":2162},{"_id":2877,"path":2878,"title":2879,"description":2879,"meta":2880,"readingTime":2885},"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":2881,"date":2882,"published":12,"tags":2883,"author":11,"cover":2884,"video":11,"excerpt":11,"shortDesc":2879},"multiple-dependencies-spring-cli","2017-08-16T08:30:40-04:00",[146],".\u002Fpexels-photo-205421-760x506.jpeg",{"minutes":1718,"text":1719},{"_id":2887,"path":2888,"title":2889,"description":2889,"meta":2890,"readingTime":2895},"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":2891,"date":2892,"published":12,"tags":2893,"author":11,"cover":2894,"video":11,"excerpt":11,"shortDesc":2889},"3-youtube-channels-java-developers","2017-08-04T13:14:00-04:00",[533,146],".\u002Fpexels-photo-760x506.jpg",{"minutes":160,"text":2365},{"_id":2897,"path":2898,"title":2899,"description":2899,"meta":2900,"readingTime":2905},"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":2901,"date":2902,"published":12,"tags":2903,"author":11,"cover":2904,"video":11,"excerpt":11,"shortDesc":2899},"spring-data-aggregate-functions-repository","2017-07-31T08:48:35-04:00",[146],".\u002Fpexels-photo-374074-760x506.jpeg",{"minutes":650,"text":651},{"_id":2907,"path":2908,"title":2909,"description":2910,"meta":2911,"readingTime":2916},"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":2912,"date":2913,"published":12,"tags":2914,"author":11,"cover":2915,"video":11,"excerpt":11,"shortDesc":2910},"use-hikaricp-next-spring-boot-project","2017-07-26T08:16:50-04:00",[533,146],".\u002Fpexels-photo-169976-760x506.jpeg",{"minutes":609,"text":610},{"_id":2918,"path":2919,"title":2920,"description":2920,"meta":2921,"readingTime":2926},"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":2922,"date":2923,"published":12,"tags":2924,"author":11,"cover":2925,"video":11,"excerpt":11,"shortDesc":2920},"spring-boot-application-failed-start","2017-07-24T09:55:33-04:00",[533,146],".\u002Fpexels-photo-205316-760x506.png",{"minutes":609,"text":610},{"_id":2928,"path":2929,"title":2930,"description":2930,"meta":2931,"readingTime":2937},"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":2932,"date":2933,"published":12,"tags":2934,"author":11,"cover":2935,"video":2936,"excerpt":11,"shortDesc":2930},"read-json-data-spring-boot-write-database","2017-07-05T12:00:27-04:00",[146],".\u002Fpexels-photo-374899-760x506.jpeg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FrGdKmF2UzSc",{"minutes":733,"text":734},{"_id":2939,"path":2940,"title":2941,"description":2941,"meta":2942,"readingTime":2947},"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":2943,"date":2944,"published":12,"tags":2945,"author":11,"cover":2946,"video":11,"excerpt":11,"shortDesc":2941},"multiple-request-mappings-spring-boot","2017-07-03T08:30:50-04:00",[146],".\u002Fpexels-photo-450035-760x506.jpeg",{"minutes":1718,"text":1719},{"_id":2949,"path":2950,"title":2951,"description":2951,"meta":2952,"readingTime":2957},"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":2953,"date":2954,"published":12,"tags":2955,"author":11,"cover":2956,"video":11,"excerpt":11,"shortDesc":2951},"9-presentations-can-watch-right-now-learn-java-9","2017-06-30T08:00:48-04:00",[533],".\u002Fcoding.jpg",{"minutes":650,"text":651},{"_id":2959,"path":2960,"title":2961,"description":2961,"meta":2962,"readingTime":2967},"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":2963,"date":2964,"published":12,"tags":2965,"author":11,"cover":2966,"video":11,"excerpt":11,"shortDesc":2961},"deploying-war-application-server-spring-boot","2017-06-28T09:14:15-04:00",[146],".\u002Fpexels-photo-292627-760x506.jpeg",{"minutes":596,"text":597},{"_id":2969,"path":2970,"title":2971,"description":2972,"meta":2973,"readingTime":2978},"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":2974,"date":2975,"published":12,"tags":2976,"author":11,"cover":2977,"video":11,"excerpt":11,"shortDesc":2972},"spring-boot-configuration-using-yaml","2017-06-26T09:00:06-04:00",[146],".\u002Femile-perron-190221-760x428.jpg",{"minutes":555,"text":556},{"_id":2980,"path":2981,"title":2982,"description":2982,"meta":2983,"readingTime":2988},"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":2984,"date":2985,"published":12,"tags":2986,"author":11,"cover":2987,"video":11,"excerpt":11,"shortDesc":2982},"building-angular-spring-boot","2017-06-23T08:00:27-04:00",[2853,146],".\u002Fimac-apple-mockup-app-38544-760x505.jpeg",{"minutes":609,"text":610},{"_id":2990,"path":2991,"title":2992,"description":2992,"meta":2993,"readingTime":2998},"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":2994,"date":2995,"published":12,"tags":2996,"author":11,"cover":2997,"video":11,"excerpt":11,"shortDesc":2992},"spring-boot-properties-setting-locale","2017-06-21T08:19:09-04:00",[146],".\u002Fandre-benz-256762-760x507.jpg",{"minutes":1718,"text":1719},{"_id":3000,"path":3001,"title":3002,"description":3002,"meta":3003,"readingTime":3008},"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":3004,"date":3005,"published":12,"tags":3006,"author":11,"cover":3007,"video":11,"excerpt":11,"shortDesc":3002},"spring-boot-2-0-m2-now-available","2017-06-19T08:30:53-04:00",[146],".\u002Fpexels-photo-92904-760x507.jpeg",{"minutes":338,"text":2162},{"_id":3010,"path":3011,"title":3012,"description":3012,"meta":3013,"readingTime":3019},"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":3014,"date":3015,"published":12,"tags":3016,"author":11,"cover":3018,"video":11,"excerpt":11,"shortDesc":3012},"migrating-grails-2-x-applications-grails-3-x","2017-06-16T08:53:25-04:00",[3017],"grails",".\u002Fpexels-photo-436784-760x507.jpeg",{"minutes":705,"text":706},{"_id":3021,"path":3022,"title":3023,"description":3023,"meta":3024,"readingTime":3028},"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":3025,"date":3026,"published":12,"tags":3027,"author":11,"cover":2904,"video":11,"excerpt":11,"shortDesc":3023},"spring-boot-defining-requestmapping-handler-methods","2017-06-14T08:36:35-04:00",[146],{"minutes":555,"text":556},{"_id":3030,"path":3031,"title":3032,"description":3032,"meta":3033,"readingTime":3038},"blog\u002Fblog\u002F2017\u002F06\u002F12\u002Fbootstrapping-angular-application.md","\u002Fblog\u002F2017\u002F06\u002F12\u002Fbootstrapping-angular-application","Bootstrapping your Angular Application",{"slug":3034,"date":3035,"published":12,"tags":3036,"author":11,"cover":3037,"video":11,"excerpt":11,"shortDesc":3032},"bootstrapping-angular-application","2017-06-12T11:40:51-04:00",[2853],".\u002Fpexels-photo-177598-760x506.jpeg",{"minutes":596,"text":597},{"_id":3040,"path":3041,"title":3042,"description":3042,"meta":3043,"readingTime":3048},"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":3044,"date":3045,"published":12,"tags":3046,"author":11,"cover":3047,"video":11,"excerpt":11,"shortDesc":3042},"angular-forms-clear-input-field","2017-06-07T09:50:47-04:00",[2853],".\u002Fangular-forms.png",{"minutes":705,"text":706},{"_id":3050,"path":3051,"title":3052,"description":3052,"meta":3053,"readingTime":3058},"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":3054,"date":3055,"published":12,"tags":3056,"author":11,"cover":3057,"video":11,"excerpt":11,"shortDesc":3052},"getting-started-angular-cli","2017-06-05T10:34:50-04:00",[2853],".\u002F2017-06-05_09-34-25-760x226.png",{"minutes":1259,"text":1260},{"_id":3060,"path":3061,"title":3062,"description":3062,"meta":3063,"readingTime":3069},"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":3064,"date":3065,"published":12,"tags":3066,"author":11,"cover":3068,"video":11,"excerpt":11,"shortDesc":3062},"spring-boot-1-question-students-asking-right-now","2017-05-31T08:48:35-04:00",[3067],"sql",".\u002Fpexels-photo-92028-760x599.jpeg",{"minutes":705,"text":706},{"_id":3071,"path":3072,"title":3073,"description":3073,"meta":3074,"readingTime":3080},"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":3075,"date":3076,"published":12,"tags":3077,"author":11,"cover":3079,"video":11,"excerpt":11,"shortDesc":3073},"so-you-want-to-create-an-online-course","2017-05-26T12:34:08-04:00",[3078],"course",".\u002Fcarl-heyerdahl-181868-1-760x507.jpg",{"minutes":1351,"text":1352},{"_id":3082,"path":3083,"title":3084,"description":3084,"meta":3085,"readingTime":3090},"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":3086,"date":3087,"published":12,"tags":3088,"author":11,"cover":3089,"video":11,"excerpt":11,"shortDesc":3084},"contributing-groovy-website","2017-05-24T08:12:01-04:00",[2821],".\u002F2017-05-23_19-50-54-760x462.png",{"minutes":719,"text":720},{"_id":3092,"path":3093,"title":3094,"description":3094,"meta":3095,"readingTime":3099},"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":3096,"date":3097,"published":12,"tags":3098,"author":11,"cover":2874,"video":11,"excerpt":11,"shortDesc":3094},"checking-upgrading-jhipster-version","2017-05-22T09:00:26-04:00",[2853,146],{"minutes":338,"text":2162},{"_id":3101,"path":3102,"title":3103,"description":3103,"meta":3104,"readingTime":3108},"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":3105,"date":3106,"published":12,"tags":3107,"author":11,"cover":3007,"video":11,"excerpt":11,"shortDesc":3103},"spring-boot-2-first-release","2017-05-19T10:15:39-04:00",[146],{"minutes":705,"text":706},{"_id":3110,"path":3111,"title":3112,"description":3113,"meta":3114,"readingTime":3119},"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":3115,"date":3116,"published":12,"tags":3117,"author":11,"cover":3118,"video":11,"excerpt":11,"shortDesc":3113},"spring-component-vs-bean","2017-05-17T09:00:06-04:00",[1054,15],".\u002Fbean-vs-component.png",{"minutes":719,"text":720},{"_id":3121,"path":3122,"title":3123,"description":3124,"meta":3125,"readingTime":3130},"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":3126,"date":3127,"published":12,"tags":3128,"author":11,"cover":3129,"video":11,"excerpt":11,"shortDesc":3124},"getting-started-spring-boot-actuator","2017-05-15T08:00:22-04:00",[146],".\u002Fpexels-photo-169573-760x507.jpeg",{"minutes":609,"text":610},{"_id":3132,"path":3133,"title":3134,"description":3134,"meta":3135,"readingTime":3140},"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":3136,"date":3137,"published":12,"tags":3138,"author":11,"cover":3139,"video":11,"excerpt":11,"shortDesc":3134},"6-courses-itunes-u","2017-05-12T08:00:52-04:00",[2842],".\u002F2017-05-11_16-07-03-760x399.png",{"minutes":338,"text":2162},{"_id":3142,"path":3143,"title":3144,"description":3144,"meta":3145,"readingTime":3149},"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":3146,"date":3147,"published":12,"tags":3148,"author":11,"cover":2977,"video":11,"excerpt":11,"shortDesc":3144},"spring-boot-moving-tomcat-jetty","2017-05-10T09:00:06-04:00",[146],{"minutes":609,"text":610},{"_id":3151,"path":3152,"title":3153,"description":3153,"meta":3154,"readingTime":3159},"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":3155,"date":3156,"published":12,"tags":3157,"author":11,"cover":3158,"video":11,"excerpt":11,"shortDesc":3153},"enable-new-youtube-dark-theme-right-now","2017-05-08T08:00:50-04:00",[550],".\u002F2017-05-04_23-05-38-760x367.png",{"minutes":160,"text":2365},{"_id":3161,"path":3162,"title":3163,"description":3163,"meta":3164,"readingTime":3169},"blog\u002Fblog\u002F2017\u002F05\u002F05\u002Fmake-weakness-strength.md","\u002Fblog\u002F2017\u002F05\u002F05\u002Fmake-weakness-strength","How to Make your weakness your strength",{"slug":3165,"date":3166,"published":12,"tags":3167,"author":11,"cover":3168,"video":11,"excerpt":11,"shortDesc":3163},"make-weakness-strength","2017-05-05T08:00:15-04:00",[2842],".\u002Flucas-rosas-98304-760x507.jpg",{"minutes":650,"text":651},{"_id":3171,"path":3172,"title":3173,"description":3173,"meta":3174,"readingTime":3179},"blog\u002Fblog\u002F2017\u002F05\u002F03\u002Fspring-angular-applications.md","\u002Fblog\u002F2017\u002F05\u002F03\u002Fspring-angular-applications","How to start writing Angular & Spring Applications",{"slug":3175,"date":3176,"published":12,"tags":3177,"author":11,"cover":3178,"video":11,"excerpt":11,"shortDesc":3173},"spring-angular-applications","2017-05-03T09:00:37-04:00",[2853,146],".\u002Fcarl-heyerdahl-181868-760x507.jpg",{"minutes":596,"text":597},{"_id":3181,"path":3182,"title":3183,"description":3184,"meta":3185,"readingTime":3190},"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":3186,"date":3187,"published":12,"tags":3188,"author":11,"cover":3189,"video":11,"excerpt":11,"shortDesc":3184},"add-validation-spring-entities","2017-05-01T16:37:13-04:00",[146],".\u002Fluis-llerena-14779-760x507.jpg",{"minutes":690,"text":691},{"_id":3192,"path":3193,"title":3194,"description":3194,"meta":3195,"readingTime":3200},"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":3196,"date":3197,"published":12,"tags":3198,"author":11,"cover":3199,"video":11,"excerpt":11,"shortDesc":3194},"every-developer-start-blog-right-now","2017-04-28T09:15:56-04:00",[2529],".\u002Fken-tomita-239357-760x507.jpg",{"minutes":1259,"text":1260},{"_id":3202,"path":3203,"title":3204,"description":3204,"meta":3205,"readingTime":3210},"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":3206,"date":3207,"published":12,"tags":3208,"author":11,"cover":3209,"video":11,"excerpt":11,"shortDesc":3204},"what-is-going-wrong-on-the-spring-boot-view-layer","2017-04-26T09:02:28-04:00",[146],".\u002Fview_layer-760x760.png",{"minutes":650,"text":651},{"_id":3212,"path":3213,"title":3214,"description":3214,"meta":3215,"readingTime":3220},"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":3216,"date":3217,"published":12,"tags":3218,"author":11,"cover":3219,"video":11,"excerpt":11,"shortDesc":3214},"spring-boot-2-0-roadmap","2017-04-24T08:00:05-04:00",[146],".\u002Fannie-spratt-161511-760x1140.jpg",{"minutes":1259,"text":1260},{"_id":3222,"path":3223,"title":3224,"description":3224,"meta":3225,"readingTime":3231},"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":3226,"date":3227,"published":12,"tags":3228,"author":11,"cover":3230,"video":11,"excerpt":11,"shortDesc":3224},"how-do-you-define-success","2017-04-21T10:00:07-04:00",[3229],"programming",".\u002Fwilliam-stitt-224301-760x1140.jpg",{"minutes":1259,"text":1260},{"_id":3233,"path":3234,"title":3235,"description":3235,"meta":3236,"readingTime":3240},"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":3237,"date":3238,"published":12,"tags":3239,"author":11,"cover":2874,"video":11,"excerpt":11,"shortDesc":3235},"what-is-jhipster","2017-04-19T09:38:31-04:00",[533,146],{"minutes":349,"text":1987},{"_id":3242,"path":3243,"title":3244,"description":3244,"meta":3245,"readingTime":3250},"blog\u002Fblog\u002F2017\u002F04\u002F17\u002Fjava-9.md","\u002Fblog\u002F2017\u002F04\u002F17\u002Fjava-9","Getting Started with Java 9",{"slug":3246,"date":3247,"published":12,"tags":3248,"author":11,"cover":3249,"video":11,"excerpt":11,"shortDesc":3244},"java-9","2017-04-17T11:05:58-04:00",[533],".\u002FJava9-760x428.png",{"minutes":349,"text":1987},{"_id":3252,"path":3253,"title":3254,"description":3255,"meta":3256,"readingTime":3261},"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":3257,"date":3258,"published":12,"tags":3259,"author":11,"cover":3260,"video":11,"excerpt":11,"shortDesc":3255},"inserting-a-groovy-date-into-a-time-stamp-column","2017-04-10T08:00:06-04:00",[2821],".\u002FGroovyDate-760x428.png",{"minutes":349,"text":1987},{"_id":3263,"path":3264,"title":3265,"description":3266,"meta":3267,"readingTime":3273},"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":3268,"date":3269,"published":12,"tags":3270,"author":11,"cover":3271,"video":3272,"excerpt":11,"shortDesc":3266},"spring-boot-command-line-runner","2017-04-07T08:00:43-04:00",[146],".\u002Fspring-boot-command-line-runner-thumbnail.png","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FgBN8x4yN5Ks",{"minutes":733,"text":734},{"_id":3275,"path":3276,"title":3277,"description":3278,"meta":3279,"readingTime":3284},"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":3280,"date":3281,"published":12,"tags":3282,"author":11,"cover":3283,"video":11,"excerpt":11,"shortDesc":3278},"java-equals","2017-04-05T08:00:50-04:00",[533],".\u002Fjava_equals-760x428.png",{"minutes":705,"text":706},{"_id":3286,"path":3287,"title":3288,"description":3288,"meta":3289,"readingTime":3294},"blog\u002Fblog\u002F2017\u002F04\u002F03\u002F2000-subscribers-youtube.md","\u002Fblog\u002F2017\u002F04\u002F03\u002F2000-subscribers-youtube","2,000 Subscribers on YouTube!!",{"slug":3290,"date":3291,"published":12,"tags":3292,"author":11,"cover":3293,"video":11,"excerpt":11,"shortDesc":3288},"2000-subscribers-youtube","2017-04-03T08:30:34-04:00",[550],".\u002F200-subscribers.jpg",{"minutes":160,"text":2365},{"_id":3296,"path":3297,"title":3298,"description":3299,"meta":3300,"readingTime":3305},"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":3301,"date":3302,"published":12,"tags":3303,"author":11,"cover":3304,"video":11,"excerpt":11,"shortDesc":3299},"using-project-lombok-spring-boot","2017-03-31T08:00:38-04:00",[533,146],".\u002F2350-760x507.jpg",{"minutes":492,"text":493},{"_id":3307,"path":3308,"title":3309,"description":3310,"meta":3311,"readingTime":3316},"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":3312,"date":3313,"published":12,"tags":3314,"author":11,"cover":3315,"video":11,"excerpt":11,"shortDesc":3310},"spring-stereotype-annotations","2017-03-27T08:00:15-04:00",[146],".\u002Fstereotype_annotations.png",{"minutes":690,"text":691},{"_id":3318,"path":3319,"title":3320,"description":3320,"meta":3321,"readingTime":3326},"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":3322,"date":3323,"published":12,"tags":3324,"author":11,"cover":3325,"video":11,"excerpt":11,"shortDesc":3320},"spring-boot-convention-based-error-pages","2017-03-24T08:00:33-04:00",[146],".\u002Fcustom-error-cover.jpg",{"minutes":609,"text":610},{"_id":3328,"path":3329,"title":3330,"description":3330,"meta":3331,"readingTime":3336},"blog\u002Fblog\u002F2017\u002F03\u002F22\u002Fspring-boot-entity-scan.md","\u002Fblog\u002F2017\u002F03\u002F22\u002Fspring-boot-entity-scan","Spring Boot Entity Scan",{"slug":3332,"date":3333,"published":12,"tags":3334,"author":11,"cover":3335,"video":11,"excerpt":11,"shortDesc":3330},"spring-boot-entity-scan","2017-03-22T08:00:44-04:00",[146],".\u002Fentity-scan.jpg",{"minutes":555,"text":556},{"_id":3338,"path":3339,"title":3340,"description":3341,"meta":3342,"readingTime":3348},"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":3343,"date":3344,"published":12,"tags":3345,"author":11,"cover":3347,"video":11,"excerpt":11,"shortDesc":3341},"made-20000-sleep","2016-10-04T20:26:59-04:00",[3346],"udemy",".\u002Fudemy_milestone_20k_2-1024x688.png",{"minutes":1259,"text":1260},{"_id":3350,"path":3351,"title":3352,"description":3353,"meta":3354,"readingTime":3359},"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":3355,"date":3356,"published":12,"tags":3357,"author":11,"cover":3358,"video":11,"excerpt":11,"shortDesc":3353},"tech-elevator-meetup-summary","2016-09-20T08:00:53-04:00",[3229],".\u002Fhighres_454339592.jpeg",{"minutes":321,"text":2148},{"_id":3361,"path":3362,"title":3363,"description":3364,"meta":3365,"readingTime":3370},"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":3366,"date":3367,"published":12,"tags":3368,"author":11,"cover":3369,"video":11,"excerpt":11,"shortDesc":3364},"spring-mvc-get-controller-method-name","2016-01-14T16:27:22-05:00",[533,146],".\u002Fcontroller-cover.jpg",{"minutes":539,"text":540},{"_id":3372,"path":3373,"title":3374,"description":3375,"meta":3376,"readingTime":3381},"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":3377,"date":3378,"published":12,"tags":3379,"author":11,"cover":3380,"video":11,"excerpt":11,"shortDesc":3375},"sending-async-emails-in-spring","2016-01-13T10:30:20-05:00",[533,146],".\u002Femail-cover.jpg",{"minutes":650,"text":651},{"_id":3383,"path":3384,"title":3385,"description":3385,"meta":3386,"readingTime":3391},"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":3387,"date":3388,"published":12,"tags":3389,"author":11,"cover":3390,"video":11,"excerpt":11,"shortDesc":3385},"using-gorm-in-spring-boot","2015-11-25T11:43:13-05:00",[2821,146,533],".\u002Fadult-back-view-data-1181345.jpg",{"minutes":1019,"text":1020},{"_id":3393,"path":3394,"title":3395,"description":3395,"meta":3396,"readingTime":3401},"blog\u002Fblog\u002F2015\u002F10\u002F23\u002Fspring-boot-application-annotation.md","\u002Fblog\u002F2015\u002F10\u002F23\u002Fspring-boot-application-annotation","Spring Boot Application Annotation",{"slug":3397,"date":3398,"published":12,"tags":3399,"author":11,"cover":3400,"video":11,"excerpt":11,"shortDesc":3395},"spring-boot-application-annotation","2015-10-23T09:08:37-04:00",[533,146],".\u002Faccess-code-connection-1181467.jpg",{"minutes":596,"text":597},{"_id":3403,"path":3404,"title":3405,"description":3406,"meta":3407,"readingTime":3413},"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":3408,"date":3409,"published":12,"tags":3410,"author":11,"cover":3412,"video":11,"excerpt":11,"shortDesc":3406},"ready-player-one-review","2015-04-24T17:00:00.000Z",[3411],"Books","bookcase-books-bookshelves-159711.jpg",{"minutes":1718,"text":1719},{"_id":3415,"path":3416,"title":3417,"description":3418,"meta":3419,"readingTime":3424},"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":3420,"date":3421,"published":12,"tags":3422,"author":11,"cover":3423,"video":11,"excerpt":11,"shortDesc":3418},"sql-server-exception-statement-not-return-result-set","2015-02-05T11:48:18-05:00",[2821,3067],".\u002Fdata-cover.jpg",{"minutes":1718,"text":1719},{"_id":3426,"path":3427,"title":3428,"description":3429,"meta":3430,"readingTime":3434},"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":3431,"date":3432,"published":12,"tags":3433,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3429},"gravatars-on-a-grails-application","2014-04-08T14:04:00-04:00",[3017,2821],{"minutes":1259,"text":1260},{"_id":3436,"path":3437,"title":3438,"description":3439,"meta":3440,"readingTime":3444},"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":3441,"date":3442,"published":12,"tags":3443,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3439},"grails-generating-links-in-your-domain-class","2014-03-31T09:03:00-04:00",[3017],{"minutes":609,"text":610},{"_id":3446,"path":3447,"title":3448,"description":3449,"meta":3450,"readingTime":3454},"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":3451,"date":3452,"published":12,"tags":3453,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3449},"grails-spring-security-plugin-logout-postonly-setting","2014-02-25T13:02:00-05:00",[3017],{"minutes":338,"text":2162},{"_id":3456,"path":3457,"title":3458,"description":3458,"meta":3459,"readingTime":3465},"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":3460,"date":3461,"published":12,"tags":3462,"author":11,"cover":3463,"video":3464,"excerpt":11,"shortDesc":3458},"creating-and-testing-your-first-grails-tag-library","2014-02-23T07:02:00-05",[3017,2821],".\u002Ftesting-cover.jpg","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FvZ_7FfML9Xg",{"minutes":705,"text":706},{"_id":3467,"path":3468,"title":3469,"description":3469,"meta":3470,"readingTime":3474},"blog\u002Fblog\u002F2013\u002F08\u002F27\u002Fgrails-mysql-boolean-gotcha.md","\u002Fblog\u002F2013\u002F08\u002F27\u002Fgrails-mysql-boolean-gotcha","Grails MySQL Boolean Gotcha",{"slug":3471,"date":3472,"published":12,"tags":3473,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3469},"grails-mysql-boolean-gotcha","2013-08-27T18:08:00-04:00",[3017,2821],{"minutes":1259,"text":1260},{"_id":3476,"path":3477,"title":3478,"description":3478,"meta":3479,"readingTime":3483},"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":3480,"date":3481,"published":12,"tags":3482,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3478},"grails-interactive-mode-use-it","2013-08-27T15:08:00-04:00",[3017],{"minutes":321,"text":2148},{"_id":3485,"path":3486,"title":3487,"description":3487,"meta":3488,"readingTime":3492},"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":3489,"date":3490,"published":12,"tags":3491,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3487},"intellij-spring-bean-injection-notification","2013-08-23T08:08:00-04:00",[3017,2821],{"minutes":160,"text":2365},{"_id":3494,"path":3495,"title":3496,"description":3496,"meta":3497,"readingTime":3501},"blog\u002Fblog\u002F2013\u002F08\u002F22\u002Fgroovy-ternary-operator.md","\u002Fblog\u002F2013\u002F08\u002F22\u002Fgroovy-ternary-operator","Groovy Ternary Operator",{"slug":3498,"date":3499,"published":12,"tags":3500,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3496},"groovy-ternary-operator","2013-08-22T13:08:00-04:00",[2821],{"minutes":349,"text":1987},{"_id":3503,"path":3504,"title":3505,"description":3505,"meta":3506,"readingTime":3510},"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":3507,"date":3508,"published":12,"tags":3509,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3505},"groovy-collections-vs-my-current-thought-process","2013-08-21T16:08:00-04:00",[3017,2821],{"minutes":650,"text":651},{"_id":3512,"path":3513,"title":3514,"description":3514,"meta":3515,"readingTime":3519},"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":3516,"date":3517,"published":12,"tags":3518,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3514},"writing-sql-in-a-grails-application","2013-08-21T12:08:00-04:00",[3017],{"minutes":349,"text":1987},{"_id":3521,"path":3522,"title":3523,"description":3523,"meta":3524,"readingTime":3528},"blog\u002Fblog\u002F2013\u002F08\u002F20\u002Fgrails-hibernate-logging.md","\u002Fblog\u002F2013\u002F08\u002F20\u002Fgrails-hibernate-logging","Grails Hibernate Logging",{"slug":3525,"date":3526,"published":12,"tags":3527,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3523},"grails-hibernate-logging","2013-08-20T17:08:00-04:00",[3017],{"minutes":160,"text":2365},{"_id":3530,"path":3531,"title":3532,"description":3532,"meta":3533,"readingTime":3537},"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":3534,"date":3535,"published":12,"tags":3536,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3532},"groovy-primitive-data-types-vs-classes","2013-08-20T12:08:00-04:00",[3017,2821],{"minutes":1718,"text":1719},{"_id":3539,"path":3540,"title":3541,"description":3541,"meta":3542,"readingTime":3546},"blog\u002Fblog\u002F2013\u002F08\u002F20\u002Fgroovys-null-safe-operator.md","\u002Fblog\u002F2013\u002F08\u002F20\u002Fgroovys-null-safe-operator","Groovy's null safe operator",{"slug":3543,"date":3544,"published":12,"tags":3545,"author":11,"cover":11,"video":11,"excerpt":11,"shortDesc":3541},"groovys-null-safe-operator","2013-08-20T06:08:00-04:00",[3017,2821],{"minutes":338,"text":2162},{"_id":3548,"path":3549,"title":3550,"description":3551,"meta":3552,"readingTime":3557},"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":3553,"date":3554,"published":12,"tags":3555,"author":16,"cover":3556,"video":11,"excerpt":11,"shortDesc":3551},"create-sql-insert-statements-from-a-spreadsheet","2010-08-04T15:08:00.000Z",[3067],".\u002Fsql-cover.png",{"minutes":338,"text":2162}]