惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Full Disclosure
WordPress大学
WordPress大学
小众软件
小众软件
Cloudbric
Cloudbric
AWS News Blog
AWS News Blog
腾讯CDC
量子位
人人都是产品经理
人人都是产品经理
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Vulnerabilities – Threatpost
Scott Helme
Scott Helme
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
C
CXSECURITY Database RSS Feed - CXSecurity.com
The Hacker News
The Hacker News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
IT之家
IT之家
Jina AI
Jina AI
Attack and Defense Labs
Attack and Defense Labs
S
SegmentFault 最新的问题
Simon Willison's Weblog
Simon Willison's Weblog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
Google Online Security Blog
Google Online Security Blog
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
罗磊的独立博客
L
LINUX DO - 最新话题
博客园 - Franky
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
The Last Watchdog
The Last Watchdog
J
Java Code Geeks
AI
AI
C
Cisco Blogs
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Cyber Attacks, Cyber Crime and Cyber Security
Cisco Talos Blog
Cisco Talos Blog
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
Help Net Security
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
I
Intezer
S
Securelist

Maciej Walkowiak - Java & Spring

Blog Generating HTTP clients in Spring Boot application from OpenAPI spec PostgreSQL and UUID as primary key Container logs with Spring Boot and Testcontainers Reified Generics in Java? Faster integration tests with reusable Testcontainers and Flyway Running one-time jobs with Quartz and Spring Boot The best way to use Testcontainers with Spring Boot Spring Boot & Flyway - clear database between integration tests What's new in Spring? Activate Maven Profile by Operating System Spring Boot with Thymeleaf and Tailwind CSS - Complete Guide How to publish a Java library to Maven Central - Complete Guide Docker Compose - waiting until containers are ready Single file Java applications with JBang Beautiful bash scripts with Gum Running Java on CRaC How to log PostgreSQL queries with Testcontainers Spring Boot 3.0 & GraalVM Native Image - not a free lunch Creating Spring Cloud Function projects with AWS SAM Loading classpath resources to String with a custom JUnit extension Creating Project Templates with Cookiecutter Auto-Registering JUnit 5 extensions Spring Boot component scanning without annotations Listing Maven dependencies in Spring Boot Actuator Info endpoint Spring Cloud AWS 2.3 RC2 Released How I built vlad-cli - command line interface to Vlad Mihalcea The State of Java Relational Persistence On Choosing a Tech Stack
Dynamic Projections with Spring Data JPA
2024-04-15 · via Maciej Walkowiak - Java & Spring
Published on
  • Java
  • Spring Data Jpa
  • Spring Boot
  • Hibernate

TIP

Projection is a subset of an aggregate loaded from a repository for read-only purposes.

Methods returning projections are typically defined on the repository level, making the repository interface aware of all possible types of projections used in the application.

java

package com.app.account.domain;

public interface AccountRepository extends Repository<Account, String> {
    AccountBasic findAccountBasicById(String id);
    AccountComplete findAccountCompleteById(String id);
}

public record AccountBasic(String id, 
                           String iban,
                           String bic) {}

public record AccountComplete(String id,
                       String iban,
                       String bic,
                       State state,
                       Type type,
                       LocalDateTime createdAt) {}

This approach has some drawbacks:

  • if there is a projection that almost fits our use case, it is tempting to modify it and add needed field - at the same time defeating a bit the main purpose of projections - fetching only what's needed.
  • naming projections becomes a challenge - how to name them? AccountBasic? AccountLight? AccountData? All these names are quite meaningless.
  • repository becomes difficult to use as it contains a long list of method, and to find out which one should be used you need to visit every projection.
  • because projections are shared between use cases, they become a coupling point, making future refactoring more difficult.
  • projections must have the same visibility level as the repository, for example if repository is public, projections must be public too.

Instead of making the repository aware of all types projections used by all the use cases, we can use dynamic projections.


Dynamic Projections ​

Dynamic Projections is one of the lesser known and used feature of Spring Data JPA.

Dynamic projections let you define a generic method on the repository level that takes any kind of projection, and remain unaware of the shape of projections.

java

package com.app.account.domain;

public interface AccountRepository extends Repository<Account, String> {
    <T> T findById(String id, Class<T> projection);
}

Now, in any package we can define a projection interface or a record, which as long as it matches the structure of an Account entity, can be used with this dynamic repository method:

java

package com.app.account;

record AccountBasic(String id, 
                    String iban, 
                    String bic) {}

// ...
AccountBasic account = accountRepository.findById(id, AccountBasic.class);

In this particular example AccountBasic is a package private class located in com.app.account. Only classes from this package can access it and as a result, the risk of abusing this projection in other parts of the application does not exist.

Local Records Projections ​

We can take hiding the projections visibility to the next level by using local records.

Records that are records defined inside a method are called local records and become a perfect solution for use cases, where the projection is used only inside of this method and are not returned:

java


class BankTransferService {
    private final AccountRepository accountRepository;
    
    // ...
    
    void transferMoney(String sourceAccountId, String targetAccountId) {
        record AccountBasic(String id,
                            String iban,
                            String bic) {}
        
        var source = accountRepository.findById(sourceAccountId, AccountBasic.class);
        var target = accountRepository.findById(targetAccountId, AccountBasic.class);
        // ...
    }
}

Just in case you are thinking now about using classes the same way, perhaps don't because local records and local classes are different:

Like nested record classes, local record classes are implicitly static, which means that their own methods can't access any variables of the enclosing method, unlike local classes, which are never static.

https://docs.oracle.com/en/java/javase/17/language/records.html

Downsides of Dynamic Projections ​

As usual, there are some downsides of this approach worth taking into consideration:

  • repository is not anymore a single place to look at all possible queries executed from the application code
  • tested repository does not mean tested all interactions with the database - any place that uses dynamic projection must have a corresponding integration test that uses real database
  • the where part of repository method returning a dynamic projection is resolved only from the method name - it is not possible to write a custom JPQL or SQL query

Summary ​

Hope you found it useful or at least slightly interesting 😉 Feel free to drop a comment if you found any mistake or have a question. Also, feel free to reach out to me on twitter.com/maciejwalkowiak.

Let's stay in touch and follow me on Twitter: @maciejwalkowiak

Subscribe to RSS feed