您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關java中MyBatis延遲加載怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
延遲加載也叫懶加載、惰性加載,使?延遲加載可以提?程序的運行效率,針對于數據持久層的操作, 在某些特定的情況下去訪問特定的數據庫,在其他情況下可以不訪問某些表,從?定程度上減少了 Java 應?與數據庫的交互次數。
查詢學?和班級的時,學生和班級是兩張不同的表,如果當前需求只需要獲取學shengsheng的信息,那么查詢學 ?單表即可,如果需要通過學?獲取對應的班級信息,則必須查詢兩張表。 不同的業務需求,需要查詢不同的表,根據具體的業務需求來動態減少數據表查詢的?作就是延遲加載。
<settings> <!-- 打印SQL--> <setting name="logImpl" value="STDOUT_LOGGING" /> <!-- 開啟延遲加載 --> <setting name="lazyLoadingEnabled" value="true"/> </settings>
StudentRepository中
public Student findByIdLazy(long id);
StudentRepository.xml
<resultMap id="studentMapLazy" type="entity.Student"> <id column="id" property="id"></id> <result column="name" property="name"></result> <association property="classes" javaType="entity.Classes" select="repository.ClassesRepository.findByIdLazy" column="cld"> </association> </resultMap> <select id="findByIdLazy" parameterType="long" resultMap="studentMapLazy"> -- select s.id ,s.name,c.id as cid,c.name as cname from student s,classes c where s.id =1 and s.cld=c.id; select * from student where id=#{id}; </select>
ClassesRepository
public Classes findByIdLazy(long id);
<resultMap id="classesMap" type="entity.Classes"> <id column="cid" property="id"></id> <result column="cname" property="name"></result> <collection property="students" ofType="entity.Student"> <id column="id" property="id"></id> <result column="name" property="name"></result> </collection> </resultMap>
關于“java中MyBatis延遲加載怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。