I'm developing a relatively large project using Spring Boot, and in a general way I'm pretty happy with it, but I'm having some problems that in my mind should't be a problem.
First of all, One-To-One Relationship. It's frustrating that it doesn't work as it should (at least in my mind).
I have two entities, User
and UserProfile
, for example. They have One-To-One relationship, but most of the time I only need the User
data, but it fetches (no matter what I try, and oh boy, I tried the world suggestions on every post for 5 pages of Google).
So there is my first question, is there a way to be able to lazy fetch One-To-One relationship in JPA and Spring? (Because most of the posts are more than 2-3 years old).
The other problem I have is about to build a JSON response in a "dynamic" way. I did some stuff using Rails and was very happy with JBuilder
or even the to_json
that gave me the ability to build the json response depending on the controller and my needs at the moment.
In Spring I saw the following solutions:
Jackson @JsonView
(which doesn't solve entirely my problem because the responses are not that static and a attribute can't be assigned to multiple views (as far as I understood the concept));
- setting to null attributes that I don't want on the response (using this, but I's just too ugly and looks like a wrong walkthrough);
- or building
HashMap
like I build .json.jbuilder
on Rails (but this kills my performance as sometimes it has relationships so a lot of for
to build the json, and also this looks like a ugly walkthrough).
I'm looking for some directions from someone that someday may have encountered one of this problems because it's killing me not being able so solve problems that in my mind should not be this hard.
EDIT 1
Already tried to add optional = false
on the @OneToOne
annotation to solve the Eager load of OneToOne relationship as @snovelli suggested. Example:
@OneToOne(optional=false, fetch = FetchType.LAZY)
public UserProfile getUserProfile(){ ... }
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…