Query result in JSON format (key value pair) on using @Query annotation in Spring Boot, Hibernate

后端 未结 1 1690
温柔的废话
温柔的废话 2020-12-11 10:31

My Controller

@GetMapping(value=\"/getAllDetails\")
public List getAllDetails() {
    return MyRepository.getAllDetails();
}


        
相关标签:
1条回答
  • 2020-12-11 10:55

    Your are actually doing a projection with your select which does not return any specific object but a tuple which is an array of objects you select in your query. Whatever way the JSON is made there are no names just values.

    You need to create a DTO to hold the values you want to pass by names in your JSON.

    A minimal example, having a simple entity like:

    @Entity
    @Getter
    @RequiredArgsConstructor
    public class TestClass {
        @Id
        @GeneratedValue
        private Long id;
    
        @NonNull
        private String a,b,c;
    }
    

    and willing to pass -for example - only a & b there might be DTO like:

    @RequiredArgsConstructor
    public class TupleDto {
        @NonNull
        private String a,b;
    }
    

    and in your case some sort of PriceListDetailsDto

    the repository might be declared like:

    public interface TestClassRepository extends CrudRepository<TestClass, Long> {
    
        @Query(value="SELECT new org.example.TupleDto(tc.a, tc.b) FROM TestClass tc")
        List<TupleDto> fetchAB();
    
    }
    

    NOTE: in above that there is used operator new and a full path to the entity constructor.

    This way Spring repository knows how to assign selected fields and when making a JSON from this DTO will result having fields with names (names in DTO).

    The new operator in JPQL is just calling new in java- So any row data a,b,c can be used to construct Java object with that object's class constructor accepting same parameter amount and types (and in the same order) so liie new MyEntityObject(a,b,c).

    NOTE ALSO: in this simple case the original entity could have been used as DTO if it was modified to allow null value in c and adding corresponding constructor. In your case where your tuple is constructed from many tables you need to create a DTO to hold those values.

    0 讨论(0)
提交回复
热议问题