Đây là 1 vài giây trong 1 video, tôi đã quay vào 1 buổi tối. Nhân vật chính là sự kiên trì, kỉ luật, động lực tự thân của một cô bé sinh viên cạnh nhà. Cô ấy thường học làm việc, học đến tầm 1h sáng. Đây là động lực cho tôi cố gắng những mục tiêu mình đã bỏ lỡ. Cố lên thôi. short video
Hi every one, This way i'll show you how to mapping dynamic query on hibernate to list<map> for dynamic result instead create new pojo/ dto class✋ - You can be use only hibernate or spring data jpa(including hibernate on compile dependencies) 👌 Importing framework Build tool: Grandle, spring boot 3.x.x a. Dependencies : implementation 'org.springframework.boot:spring-boot-starter-data-jpa' b. Compile dependencies on spring data jpa: c. Version: id 'org.springframework.boot' version '3.0.2' Implementing 1. Create a generic repository custom public interface GenericRepoCustom { long counting ( String sql ) ; List findStrategy ( String sql , Class clazz ) ; } 2. Autowire GenericRepoCustom on service 3. Call it and passing class type List < Map > orders = genericRepo .findStrategy( strSQL , Map . class ); strSQL : work well when get one or get list 4. Create function mapping if clazz is Map.class import jakarta.pe...
Comments
Post a Comment