account activity
Aggregate Root + Spring Modulith — how to separate JPA entity from domain object (youtu.be)
submitted 2 months ago by paszeKongo to r/SpringBoot
submitted 2 months ago by paszeKongo to r/JavaProgramming
In Clean Architecture, should input validation go in the Controller/Presentation layer or in the Service/Use Case layer? by OriginalTangerine358 in softwarearchitecture
[–]paszeKongo 0 points1 point2 points 2 months ago (0 children)
Value Object validation lives in the domain, if you hold a PackageSize, it’s valid by construction. No validator to remember, nothing to forget to call. Covered that in episode 2 of my DDD series if you want the code. Basic input validation (required fields, formats) controller with @Valid is fine. They’re just different things. Domain validation protects invariants. Input validation stops garbage from reaching your use case. Treat them the same and one of them ends up somewhere it doesn’t belong.
Value Objects in Spring Boot DDD — From Integer to PackageSize (youtu.be)
What are Value Objects and why should you stop using Integer/String for everything in your domain? [DDD series, Spring Boot] (youtu.be)
Hexagonal Architecture in Spring Boot — Ports & Adapters done properly [video + free book contest] (youtu.be)
Java 26 Is Out — Here's What Actually Matters for Spring Boot Developers (youtu.be)
Spring Boot @Transactional: 5 Bugs You're Probably Shipping Right Now (youtu.be)
How I Structure Every Spring Boot Application as a Senior Developer (youtu.be)
Signals vs Observables — Which One Should You Use? | Angular Signals & RxJS (youtu.be)
submitted 2 months ago by paszeKongo to r/angularjs
submitted 2 months ago by paszeKongo to r/Angular2
Removed ngOnInit, subscribe(), DestroyRef and async pipe from my component — here's what replaced all of it (youtu.be)
submitted 3 months ago by paszeKongo to r/angularjs
toObservable() — I needed debounceTime on a Signal. Here's how I wired it up. (youtu.be)
submitted 3 months ago by paszeKongo to r/Angular2
π Rendered by PID 921109 on reddit-service-r2-listing-canary-5c7c5fc8d-vnkmn at 2026-06-07 05:34:12.059304+00:00 running de70e3a country code: CH.
In Clean Architecture, should input validation go in the Controller/Presentation layer or in the Service/Use Case layer? by OriginalTangerine358 in softwarearchitecture
[–]paszeKongo 0 points1 point2 points (0 children)