List of usage examples for org.hibernate.annotations LazyToOneOption NO_PROXY
LazyToOneOption NO_PROXY
To view the source code for org.hibernate.annotations LazyToOneOption NO_PROXY.
Click Source Link
From source file:org.xchain.namespaces.hibernate.test.om.UserNote.java
License:Apache License
@ManyToOne @LazyToOne(LazyToOneOption.NO_PROXY) @Fetch(FetchMode.SELECT) public User getUser() { return user; }