Proiezioni e DTO
Selezioni solo i dati necessari.
Proiezioni e DTO è una lezione Spring Boot 4 Microservices & REST APIs gratuita su CoddyKit. Questa è la lezione 2 di 4. Puoi leggere la lezione completa qui gratuitamente — poi esercitati direttamente nel browser con un editor di codice integrato e un tutor IA disponibile 24/7. Fa parte del percorso di apprendimento Spring Boot 4 Microservices & REST APIs, e i tuoi progressi si sincronizzano tra il web e l'app CoddyKit. Il corso Spring Boot 4 Microservices & REST APIs include 4 lezioni in totale.
Parti di questa lezione non sono ancora state tradotte e vengono mostrate in inglese.
Why Projections
Fetching whole entities when you need only a few columns wastes memory and bandwidth.
Projections let you select a subset of fields, returning lightweight objects instead of full entities.
Interface Projections
Declare an interface with getters for the fields you want. Spring Data implements it as a proxy.
public interface UserSummary {
String getName();
String getEmail();
}Returning a Projection
Use the interface as the query method return type.
public interface UserRepository
extends JpaRepository<User, Long> {
List<UserSummary> findByActiveTrue();
}Closed vs Open Projections
A closed projection only exposes existing properties (efficient — selects only those columns). An open projection computes values with @Value and SpEL (loads the whole entity).
Open Projection Example
Combine fields with a SpEL expression.
public interface UserView {
@Value("#{target.firstName + ' ' + target.lastName}")
String getFullName();
}Class-Based Projections (DTOs)
A DTO class with a matching constructor is another projection style. Spring Data maps query columns to constructor parameters by name.
public class UserDto {
private final String name;
private final String email;
public UserDto(String name, String email) {
this.name = name;
this.email = email;
}
// getters
}Returning a DTO
Use the DTO class as the return type, just like interface projections.
public interface UserRepository
extends JpaRepository<User, Long> {
List<UserDto> findByActiveTrue();
}DTOs in JPQL Constructor Expressions
With custom JPQL, use a constructor expression to build DTOs directly.
@Query("SELECT new com.app.UserDto(u.name, u.email) "
+ "FROM User u WHERE u.active = true")
List<UserDto> findActiveSummaries();Dynamic Projections
Make the return type generic so one method serves multiple projections.
<T> List<T> findByActiveTrue(Class<T> type);
// usage
repo.findByActiveTrue(UserSummary.class);
repo.findByActiveTrue(UserDto.class);Projections with Native Queries
Interface projections also work with native SQL queries when column names match the getters.
@Query(value = "SELECT name, email FROM users",
nativeQuery = true)
List<UserSummary> findAllSummaries();Choosing an Approach
Prefer closed interface projections for read-only lists (most efficient). Use DTO classes when you need behavior or want them outside the persistence layer.
Quick Check
Test your understanding of projections.
Recap
You learned to return lightweight results:
- Interface projections — closed (efficient) or open (SpEL)
- Class-based DTO projections via constructor mapping
- JPQL constructor expressions for custom queries
- Dynamic projections with a generic type parameter
Impara Java con un tutor IA — gratis
Scrivi ed esegui vero codice nel tuo browser, ricevi aiuto istantaneo da un tutor IA disponibile 24/7, e riprendi da dove hai lasciato sul web o nell'app.
- Corsi
- 24
- Lezioni
- 93
Domande Frequenti
La lezione «Proiezioni e DTO» è gratuita?
Sì — il testo completo di «Proiezioni e DTO» è gratuito qui sul web. Per esercitarvi in modo interattivo (un editor di codice integrato e un tutor IA 24/7) e sbloccare il resto del corso Spring Boot 4 Microservices & REST APIs, passa a CoddyKit PRO. Il corso Spring Boot 4 Microservices & REST APIs include 4 lezioni in totale.
Cosa imparerò in «Proiezioni e DTO»?
Selezioni solo i dati necessari. Eserciti Spring Boot 4 Microservices & REST APIs con codice pratico che esegui direttamente nel browser, e un tutor IA 24/7 risponde alle tue domande mentre lavori sulla lezione.
Ho bisogno di esperienza per iniziare Spring Boot 4 Microservices & REST APIs?
Non è richiesta alcuna esperienza precedente. Spring Boot 4 Microservices & REST APIs su CoddyKit è strutturato per principianti e studenti avanzati, quindi puoi iniziare da qui o dall'inizio e procedere al tuo ritmo. Questa è la lezione 2 di 4.
Quanto tempo richiede la lezione «Proiezioni e DTO»?
La maggior parte delle lezioni CoddyKit richiede circa 5–10 minuti. Ogni lezione è breve e interattiva, quindi fai progressi costanti e riprendi esattamente da dove hai lasciato su web e app.
Posso scrivere ed eseguire codice in questa lezione Spring Boot 4 Microservices & REST APIs?
Sì. Ogni lezione Spring Boot 4 Microservices & REST APIs include un editor di codice integrato, quindi scrivi ed esegui codice reale direttamente nel tuo browser e ricevi feedback istantaneo dall'IA — nessuna configurazione locale necessaria.
Tutte le lezioni di questo corso
- Query dinamiche con le Specification
- Proiezioni e DTO
- Auditing con @CreatedDate
- Paginazione e ordinamento