本文介紹了為什么@BASIC(FETCH=LAZY)在我的情況下不起作用?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我知道類似的問題已經被問了很多次,但我還沒有找到一個可以幫助我的問題。
那么,我可以請您幫我找一下為什么a的Book
的title
被搶走的原因嗎?
我有一個非常簡單的代碼庫,下面是我的實體:
@Entity
@NoArgsConstructor
@AllArgsConstructor
@Data
@Builder
public class Book {
@Id
@GeneratedValue
private int id;
@Lob
@Basic(fetch = FetchType.LAZY, optional = false)
private String title;
}
這里是一段客戶端代碼,在本例中由psvm()
表示:
public static void main(String[] args) {
final ApplicationContext context = new AnnotationConfigApplicationContext(AppConfig.class);
final SessionFactory sessionFactory = context.getBean(SessionFactory.class);
Session session = sessionFactory.openSession();
Book book = Book.builder().title("Peace and War").build();
Transaction tx = session.beginTransaction();
session.save(book);
tx.commit();
session.close();
session = sessionFactory.openSession();
book = session.get(Book.class, book.getId());
}
我還在maven中添加了一個插件,以增強字節碼:
<build>
<plugins>
<plugin>
<groupId>org.hibernate.orm.tooling</groupId>
<artifactId>hibernate-enhance-maven-plugin</artifactId>
<version>5.3.6.Final</version>
<executions>
<execution>
<configuration>
<enableLazyInitialization>true</enableLazyInitialization>
</configuration>
<goals>
<goal>enhance</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
但仍然使用以下查詢急切地獲取title
:
Hibernate: select book0_.id as id1_0_0_, book0_.title as title2_0_0_ from Book book0_ where book0_.id=?
由于hibernate.show_sql=true
我可以看到
你能幫我找出我做錯了什么嗎?
表面上似乎有答案,但我找不到。
推薦答案
@Basic(fetch = FetchType.LAZY, optional = false)
根據JPA規范@Basic
關于您正在使用的實現,不能保證應用延遲加載。您可以在這里查看https://en.wikibooks.org/wiki/Java_Persistence/Basic_Attributes
在JPA中,對Basic的延遲獲取支持是可選的,因此某些JPA提供程序可能不支持它。
無論如何,一種解決方法是創建一個新的獨立實體,例如BookTitle,然后建立一對一關系并從Book實體延遲加載:
public class BookTitle {
@Id
@GeneratedValue
private Long id;
@Lob
@Basic(fetch = FetchType.LAZY, optional = false)
private String title;
}
public class Book {
@Id
@GeneratedValue
private int id;
@OneToOne (fetch = FetchType.LAZY)
private BookTitle bookTitle;
}
這篇關于為什么@BASIC(FETCH=LAZY)在我的情況下不起作用?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,