<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>Tagaki</title><description>一位 Java 的小小学习者，记录学习过程。</description><link>https://blog-6d5.pages.dev/</link><item><title>Ehcache:JVM 进程内缓存,比 Redis 还快</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch6-2-ehcache/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch6-2-ehcache/</guid><description>第 6 章学习笔记（中）。讲 Ehcache 4 大特点 + 4 种策略 + 分层架构 + 完整 Spring Boot 整合例子,以及什么时候该用 Ehcache 而不是 Redis。</description><pubDate>Mon, 07 Sep 2026 00:00:00 GMT</pubDate></item><item><title>Spring Cache 声明式缓存：5 个注解搞定增删改查缓存</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch6-1-default-cache/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch6-1-default-cache/</guid><description>第 6 章学习笔记（上）。从&quot;每次查都打数据库&quot;的问题出发，讲 Spring Cache 抽象 + 5 个声明式缓存注解 + 完整 Spring Boot 整合例子。</description><pubDate>Mon, 07 Sep 2026 00:00:00 GMT</pubDate></item><item><title>Redis 作为缓存后端:一行配置切换缓存实现</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch6-3-redis-as-cache/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch6-3-redis-as-cache/</guid><description>第 6 章学习笔记（下）。讲怎么把 ch5.3 的 RedisTemplate 直接用法,升级到 Spring Cache 抽象,以及这一行配置切换的威力。</description><pubDate>Mon, 07 Sep 2026 00:00:00 GMT</pubDate></item><item><title>MyBatis-Plus:用&quot;约定大于配置&quot;的方式写 MyBatis</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch5-2-mybatis-plus/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch5-2-mybatis-plus/</guid><description>第 5 章学习笔记（中）。从 MyBatis 写 SQL 的痛点出发，讲 MyBatis-Plus 的通用 Mapper、通用 Service、条件构造器，加上 Lambda 风格、自动填充、软删除这些教材没讲的实战内容。</description><pubDate>Sun, 06 Sep 2026 00:00:00 GMT</pubDate></item><item><title>Redis:把数据库塞进内存里,让接口快 100 倍</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch5-3-redis/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch5-3-redis/</guid><description>第 5 章学习笔记（下）。从&quot;为什么查数据库这么慢&quot;的问题出发，讲 Redis 的 5 种数据类型 + Spring Data Redis 整合 + 缓存三大问题（穿透/雪崩/击穿）。</description><pubDate>Sun, 06 Sep 2026 00:00:00 GMT</pubDate></item><item><title>Spring Data JPA:用面向对象的方式操作数据库</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch5-1-jpa/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch5-1-jpa/</guid><description>第 5 章学习笔记（上）。从&quot;写 SQL 太烦&quot;的问题出发，讲 Spring Data JPA 的 4 种查询方式 + 完整 Spring Boot 整合例子。</description><pubDate>Sun, 06 Sep 2026 00:00:00 GMT</pubDate></item><item><title>你好，我是 Tagaki</title><link>https://blog-6d5.pages.dev/posts/hi-im-tagaki/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/hi-im-tagaki/</guid><description>一个小小 Java 学习者的开篇自我介绍，解释为什么开这个博客。</description><pubDate>Sat, 05 Sep 2026 00:00:00 GMT</pubDate></item><item><title>Spring Boot 整合 Thymeleaf:从&quot;在浏览器里直接看&quot;到图书管理</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch4-thymeleaf/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch4-thymeleaf/</guid><description>第 4 章学习笔记。例子驱动,先做一个&quot;能直接在浏览器打开的 HTML 模板&quot;,再讲 Thymeleaf 怎么把数据塞进去。</description><pubDate>Sat, 05 Sep 2026 00:00:00 GMT</pubDate></item><item><title>Spring Boot Web:三大组件注册 + MVC 自定义 + 文件上传 + 异常处理</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch3-web/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch3-web/</guid><description>第 3 章学习笔记。例子驱动,先做一个&quot;过滤所有请求&quot;的小例子,再展开讲三大组件、自定义 MVC、文件上传、异常处理。</description><pubDate>Sat, 05 Sep 2026 00:00:00 GMT</pubDate></item><item><title>Spring Boot 配置:把硬编码抽出来,不同环境不同配置</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch2-config/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch2-config/</guid><description>第 2 章学习笔记。例子驱动,从&quot;配置硬编码在代码里&quot;的问题出发,讲三种注入方式 + Profile 多环境。</description><pubDate>Sat, 05 Sep 2026 00:00:00 GMT</pubDate></item><item><title>读 Spring Boot 前你需要会什么</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch0-prerequisites/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch0-prerequisites/</guid><description>ch1-ch4 的前置知识清单。Java 基础、Maven、HTTP、IoC 概念。不熟的先去补。</description><pubDate>Sat, 05 Sep 2026 00:00:00 GMT</pubDate></item><item><title>Spring Boot 入门:从装环境到第一个接口跑起来</title><link>https://blog-6d5.pages.dev/posts/spring-boot-ch1-intro/</link><guid isPermaLink="true">https://blog-6d5.pages.dev/posts/spring-boot-ch1-intro/</guid><description>第 1 章学习笔记。例子驱动,先跑通一个 Hello World,再回头讲为什么能跑。</description><pubDate>Sat, 05 Sep 2026 00:00:00 GMT</pubDate></item></channel></rss>