AOP: aspect / pointcut / advice / weaving
Every codebase grows a set of chores that have nothing to do with the actual job of a method, yet somehow end up inside every method anyway. Logging…
Tech news from the best sources
Every codebase grows a set of chores that have nothing to do with the actual job of a method, yet somehow end up inside every method anyway. Logging…
There is a question that costs me half an hour every time I have to answer it: If I change this controller method, what else breaks? The honest proc…
Introduction This has been one of the toughest weeks I've experienced since starting this challenge. There were moments when I doubted myself , ques…
Всем привет, меня зовут Михаил, я работаю Java/Kotlin разработчиком в ОТП Банке. Все мы знаем про Redis. Часто используем его для in-memory кэша. В…
You put @Transactional on a method and a database transaction opens before it runs and commits when it returns — yet you never wrote a line to start…
Two hooks with nearly the same name Spring's container builds your objects so you don't have to. You mark a class, and a fully-wired object — a bean…
This week, Anthropic's system-prompt release notes became the top story on Hacker News. The page is where Anthropic publishes the exact instructions…
Introduction This week, I decided to slow down and go deeper into the Spring Framework . Instead of focusing heavily on building new features, I spe…
Three days ago I knew exactly what a DeepSeek call cost me. I had wired DeepSeek V4 Pro 0813 into a Spring Boot app with Spring AI, and the math was…
When I started learning Spring, I noticed something about many of the tutorials I found. They often showed how to use a feature, but not always why…
Querydsl is one of those libraries that everyone used for years and then quietly stopped updating. The 5.0 release has been "coming soon" since 2019…
Часть 2 из 2. В первой части был холивар про самодельные фреймворки. Здесь - цифры: мы дали ИИ-агенту построить одно и то же приложение…
Всем привет! 👋👋👋👋👋 Мы — Java-разработчики Т-Банка: Андрей , Арсений , Роман , Константин и Константин. Собираем интересные новости, статьи, туториал…
Привет, Хаброжители! В книге «Java для профи. Инструменты, фреймворки, тестирование, производительность» тандем опытных Java-разработчиков проводит…
Почему Spring-приложение запускается медленно, и на каком именно этапе оно тупит? В новом переводе от команды Spring АйО разбираемся, как заглянуть…
Last month, I was building an AI assistant for an e-commerce system. The idea was simple: let users ask natural-language questions about orders and…
Earlier this year, I needed to add an AI assistant to a Spring Boot application I maintain. Nothing exotic -- just a chat interface that could answe…
Всем привет! Меня зовут Григорий, и недавно при разработке своего микросервисного приложения я нашёл уязвимость — сообщения, пересылаемые…
完全的萌新第一个SpringBoot项目,主要爆红问题是: MyBatis-Plus尝试执行某个 Mapper 方法,却找不到与之对应的 SQL 映射 具体爆红日志如下: 2026-07-29T16:57:48.976+08:00 ERROR 38512 --- [nio-8080-exec-6…
Numbers are easy to skim. 10 Critical. 99 High. 59 Medium. 20 Low. 188 total. Those numbers appeared in the first article and they're striking — but…
If you have written enterprise Java in the last 20 years, you know the name Rod Johnson. He created Spring Framework back in 2003 - the thing that m…
If you've ever started a Java project, you probably know how much configuration is usually required. You need to configure XML files, register beans…
Всех приветствую! Данная статья будет посвящена довольно важным вещам, таким как: refreshtoken, метод-уровневой безопасности и примеру реализации пр…
If you've wired up a Spring Boot resource server behind Keycloak and your @PreAuthorize("hasRole('ADMIN')") is silently returning 403 for a user you…
Every developer who has worked with LLMs has been there. You ask the model for JSON. You describe the schema. You say "please only respond with vali…
Открой свой Spring-проект, которому больше двух лет. Найди пакет common , core или framework — а он там есть, я почти…
Софту всё чаще приходится интегрироваться с LLM. И тут быстро всплывает неприятная деталь: модели хорошо пишут текст, но не всегда стабильно возвращ…
В данной статье мы научились реализовывать аутентификацию при помощи Spring Security и протестировали её же. Читать далее
В данной статье поигрались с базовыми возможностями Spring Secrity и узнали фундамент на котором строится вся остальная безопасность приложения Чита…
Introduction Imagine you're assembling a new piece of furniture. One option is to buy every screw, bolt, plank, and tool separately, then spend hour…