私は多くのSpring Repositoryインタフェースを使用しています。 1つは私のために正常に働いていたが、私はそれからもう少し必要があることを理解した。私は、get()、私はコピー&ペーストうまくいけば、次はそれを分かりやすくするために十分な情報を与えることができないので、イントラネット上で動作Springリポジトリ投影1つのオブジェクトの子を取得
の1つの以上のレベル...
@Entity
@Table(name="person")
class Person {
...
}
@Entity
@Table(name="requisite")
class Requisite {
...
@OneToOne
@JoinColumn
private Document document;
}
@Entity
@Table(name="person_requisite")
class PersonRequisite {
...
@ManyToOne
@JoinColumn(name="person_id")
private Person person;
...
@ManyToOne
@JoinColumn(name="requisite_id")
private Requisite requisite;
...
}
@Projection(name="personRequisiteProjection", types={PersonRequisite.class})
public interface PersonRequisiteProjection {
...
Person getPerson();
Requisite getRequisite();
...
}
ここに行きたかったです...ここで
"personRequisites" : [ {
...
"requisite" : {
id : 1,
...
no document object or document id from the requisite
},
"person" : {
id : 33,
...
},
...
]
...
は、私が何をしたいの表現私は今取得しています何の表現です...
"personRequisites" : [ {
...
"requisite" : {
id : 1,
...
"document" : {
"id" : 55,
"name" : blah,
...
}
},
"person" : {
id : 33,
...
},
...
]
...
私は、これは正しくありません知っているが、私は基本的に
@Projection(name="personRequisiteProjection", types={PersonRequisite.class})
public interface PersonRequisiteProjection {
...
//i know, this would be out of place if it worked but trying to emphasize what i want...
Document getRequisite().getDocument();
//i'd still want Requisite getRequisite() as well but you get what i am after
...
//or more appropriately, force document to show up in Requisite here...
Requisite getRequisite();
...
}
チェックをしたい、このくださいhttps://stackoverflow.com/questions/44554979/how-to-loop-and-retrieve-value-from- hateoas-link-attribute-eg-retrieve-a-des/44564464#44564464 –
どのような冗談です。あなたが上記のリンクに実際に1つを導くだろうか?何かが人々に深刻に間違っている。彼らは嫌悪者です。神があなたを世話してくれます。 – user2052618