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