我收到此错误,有人可以帮助我吗?
javax.xml.ws.WebServiceException:javax.xml.bind.MarshalException - 链接异常:[com.sun.istack.internal.SAXException2:在对象图中检测到一个循环。这将导致无限深刻 XML:tn.bh.jpa.Compte@1144c75 - > tn.bh.jpa.Mouvement_Compte@1f4eccd - > tn.bh.jpa.Compte@1144c75] com.sun.xml.internal.ws.message.jaxb.JAXBMessage.writePayloadTo(未知 来源)at com.sun.xml.internal.ws.message.AbstractMessageImpl.writeTo(未知 来源)at com.sun.xml.internal.ws.encoding.StreamSOAPCodec.encode(未知 来源)at com.sun.xml.internal.ws.encoding.SOAPBindingCodec.encode(未知 来源)at com.sun.xml.internal.ws.transport.http.HttpAdapter.encodePacket(未知 来源)at com.sun.xml.internal.ws.transport.http.HttpAdapter.access $ 100(未知 来源)at com.sun.xml.internal.ws.transport.http.HttpAdapter $ HttpToolkit.handle(未知 来源)at com.sun.xml.internal.ws.transport.http.HttpAdapter.handle(未知 来源)at com.sun.xml.internal.ws.transport.http.server.WSHttpHandler.handleExchange(未知 来源)at com.sun.xml.internal.ws.transport.http.server.WSHttpHandler.handle(未知 来源)com.sun.net.httpserver.Filter $ Chain.doFilter(未知 来自)sun.net.httpserver.AuthFilter.doFilter(未知来源)at com.sun.net.httpserver.Filter $ Chain.doFilter(未知来源)at sun.net.httpserver.ServerImpl $交易所$ LinkHandler.handle(未知 来源)com.sun.net.httpserver.Filter $ Chain.doFilter(未知 来源)sun.net.httpserver.ServerImpl $ Exchange.run(未知来源) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor $ Worker.run(Unknown Source) 在java.lang.Thread.run(未知来源)引起: javax.xml.bind.MarshalException - 链接异常:[com.sun.istack.internal.SAXException2:在对象图中检测到一个循环。这将导致无限深刻 XML:tn.bh.jpa.Compte@1144c75 - > tn.bh.jpa.Mouvement_Compte@1f4eccd - > tn.bh.jpa.Compte@1144c75] com.sun.xml.internal.bind.v2.runtime.MarshallerImpl.write(未知 来源)at com.sun.xml.internal.bind.v2.runtime.BridgeImpl.marshal(未知 来源)com.sun.xml.internal.bind.api.Bridge.marshal(未知 来源)... 19更多引起:com.sun.istack.internal.SAXException2: 在对象图中检测到循环。这将无限制地造成 深XML:tn.bh.jpa.Compte@1144c75 - > tn.bh.jpa.Mouvement_Compte@1f4eccd - > tn.bh.jpa.Compte@1144c75 at com.sun.xml.internal.bind.v2.runtime.XMLSerializer.reportError(未知 来源)at com.sun.xml.internal.bind.v2.runtime.XMLSerializer.pushObject(未知 来源)at com.sun.xml.internal.bind.v2.runtime.XMLSerializer.childAsXsiType(未知 来源)at com.sun.xml.internal.bind.v2.runtime.property.SingleElementNodeProperty.serializeBody(未知 来源)at com.sun.xml.internal.bind.v2.runtime.ClassBeanInfoImpl.serializeBody(未知 来源)at com.sun.xml.internal.bind.v2.runtime.XMLSerializer.childAsXsiType(未知 来源)at com.sun.xml.internal.bind.v2.runtime.property.ArrayElementNodeProperty.serializeItem(未知 来源)at com.sun.xml.internal.bind.v2.runtime.property.ArrayElementProperty.serializeListBody(未知 来源)at com.sun.xml.internal.bind.v2.runtime.property.ArrayERProperty.serializeBody(未知 来源)at com.sun.xml.internal.bind.v2.runtime.ClassBeanInfoImpl.serializeBody(未知 来源)at com.sun.xml.internal.bind.v2.runtime.XMLSerializer.childAsXsiType(未知 来源)at com.sun.xml.internal.bind.v2.runtime.property.ArrayElementNodeProperty.serializeItem(未知 来源)at com.sun.xml.internal.bind.v2.runtime.property.ArrayElementProperty.serializeListBody(未知 来源)at com.sun.xml.internal.bind.v2.runtime.property.ArrayERProperty.serializeBody(未知 来源)at com.sun.xml.internal.bind.v2.runtime.ClassBeanInfoImpl.serializeBody(未知 来源)at com.sun.xml.internal.bind.v2.runtime.XMLSerializer.childAsXsiType(未知 来源)... 22更多
tn.bh.jpa.Compte
@Entity
@Table(name="compte")
public class Compte {
@Id
@Column(name="compte_rib")
private Integer rib;
@ManyToOne(cascade={CascadeType.PERSIST, CascadeType.MERGE})
@JoinColumn(name="compte_utilisateurIdentifiant")
@XmlTransient
private User user;
@Column(name="compte_libelle")
private String libelle;
@OneToMany(mappedBy="compte")
private List<Solde> soldeList;
@Column(name="compte_dateCreation", nullable=false)
private String dateCréation;
@Column(name="compte_dateMaj", nullable=false)
private String dateMaj;
@Column(name="compte_typeDevise", nullable=false)
private Integer typeDevise;
@Column(name="compte_situationCompte", nullable=false)
private Integer situationCompte;
@OneToMany(fetch = FetchType.EAGER, mappedBy="compte2")
@XmlTransient
private List<Mouvement_Compte> mvtList;
@ManyToMany(cascade = {CascadeType.ALL},
mappedBy = "comptes",
targetEntity = Virement.class)
private List<Virement> virementList;
public Compte(){}
public Compte(Integer rib, String libelle, String dateCréation, String dateMaj,
Integer typeDevise, Integer situationCompte) {
this.rib = rib;
this.libelle = libelle;
this.dateCréation = dateCréation;
this.dateMaj = dateMaj;
this.typeDevise = typeDevise;
this.situationCompte = situationCompte;
}
public boolean equals(Compte c){
boolean returnValue = true;
if ((!this.rib.equals(c.getRib()))
|| (!this.dateCréation.equals(c.getDateCréation()))
|| (!this.dateMaj.equals(c.getDateMaj()))
|| (!this.typeDevise.equals(c.getTypeDevise()))
|| (!this.situationCompte.equals(c.getSituationCompte())))
returnValue = false;
return returnValue;
}
public String toString(Compte c){
return "[Rib] : " + c.getRib() + " [Libelle] : " + c.getLibelle() + " [String création] : " +
c.getDateCréation() + " [String mise-à-jour] : " + c.getDateMaj() + " [Type devise] : " +
c.getTypeDevise() + " [Situation compte] : " + c.getSituationCompte();
}
public Integer getRib() {
return rib;
}
public void setRib(Integer rib) {
this.rib = rib;
}
public String getLibelle() {
return libelle;
}
public void setLibelle(String libelle) {
this.libelle = libelle;
}
public String getDateCréation() {
return dateCréation;
}
public void setDateCréation(String dateCréation) {
this.dateCréation = dateCréation;
}
public String getDateMaj() {
return dateMaj;
}
public void setDateMaj(String dateMaj) {
this.dateMaj = dateMaj;
}
public Integer getTypeDevise() {
return typeDevise;
}
public void setTypeDevise(Integer typeDevise) {
this.typeDevise = typeDevise;
}
public Integer getSituationCompte() {
return situationCompte;
}
public void setSituationCompte(Integer situationCompte) {
this.situationCompte = situationCompte;
}
public List<Solde> getSoldeList() {
return soldeList;
}
public void setSoldeList(List<Solde> soldeList) {
this.soldeList = soldeList;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public List<Mouvement_Compte> getMvtList() {
return mvtList;
}
public void setMvtList(List<Mouvement_Compte> mvtList) {
this.mvtList = mvtList;
}
public List<Virement> getVirementList() {
return virementList;
}
public void setVirementList(List<Virement> virementList) {
this.virementList = virementList;
}
}
tn.bh.jpa.Mouvement_compte
@Entity
@Table(name="mouvement_compte")
public class Mouvement_Compte {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name="mouvement_compte_id")
private Integer id;
@ManyToOne(cascade={CascadeType.PERSIST, CascadeType.MERGE})
@JoinColumn(name="mouvement_compte_compteRib")
@XmlTransient
private Compte compte2;
@Column(name="mouvement_compte_cod_op", nullable=false)
private String cod_op;
@Column(name="mouvement_compte_dat_mvt", nullable=false)
private String dat_mvt;
@Column(name="mouvement_compte_mnt_mvt", nullable=false)
private Double mnt_mvt;
@Column(name="mouvement_compte_sens_mvt", nullable=false)
private char sens_mvt;
@Column(name="mouvement_compte_dat_journee", nullable=false)
private String dat_journee;
public Mouvement_Compte(){}
public Mouvement_Compte(String cod_op, String dat_mvt,
Double mnt_mvt, char sens_mvt, String dat_journee) {
this.cod_op = cod_op;
this.dat_mvt = dat_mvt;
this.mnt_mvt = mnt_mvt;
this.sens_mvt = sens_mvt;
this.dat_journee = dat_journee;
}
public boolean equals(Mouvement_Compte m){
boolean returnValue = true;
if ((!this.id.equals(m.getId()))
|| (!this.cod_op.equals(m.getCod_op()))
|| (!this.dat_mvt.equals(m.getDat_mvt()))
|| (!this.mnt_mvt.equals(m.getMnt_mvt()))
|| ((this.sens_mvt != m.getSens_mvt()))
|| (!this.dat_journee.equals(m.getDat_journee())))
returnValue = false;
return returnValue;
}
public String toString(Mouvement_Compte m){
return "[Id] : " + m.getCod_op() + " [Code opération] : " + m.getCod_op() +
" [Date] : " + m.getDat_mvt() + " [Montant] : " + m.getMnt_mvt() +
" [Sens] : " + m.getSens_mvt() + " [String journée] : " + m.getDat_journee();
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getCod_op() {
return cod_op;
}
public void setCod_op(String cod_op) {
this.cod_op = cod_op;
}
public String getDat_mvt() {
return dat_mvt;
}
public void setDat_mvt(String dat_mvt) {
this.dat_mvt = dat_mvt;
}
public Double getMnt_mvt() {
return mnt_mvt;
}
public void setMnt_mvt(Double mnt_mvt) {
this.mnt_mvt = mnt_mvt;
}
public char getSens_mvt() {
return sens_mvt;
}
public void setSens_mvt(char sens_mvt) {
this.sens_mvt = sens_mvt;
}
public String getDat_journee() {
return dat_journee;
}
public void setDat_journee(String dat_journee) {
this.dat_journee = dat_journee;
}
public Compte getCompte() {
return compte2;
}
public void setCompte(Compte compte) {
this.compte2 = compte;
}
}
的WebMethod
@WebMethod
public List<Compte> consulterListeCpt(String id){
List<Compte> objects = null;
try {
s = HibernateUtils.getSession();
Transaction tx = s.beginTransaction();
Query query = s.createQuery("from Compte where compte_utilisateuridentifiant = :y");
query.setString("y", id);
objects = query.list();
tx.commit();
} catch (HibernateException e) {
System.out.println(e.getMessage());
} finally {
s.close();
}
for (Compte c: objects)
System.out.println("[rib] = " + c.getRib() + "\t" +
"[title] = " + c.getLibelle() + "\t" +
"[dateC] = " + c.getDateCréation() + "\t");
return objects;
}
客户主要班级
public class Client {
public static void main(String[] args){
ServiceService service = new ServiceService();
tn.bh.services.client.Service srvc = service.getServicePort();
List<Compte> response = srvc.consulterListeCpt("id");
}
答案 0 :(得分:4)
默认情况下,JAXB impl会将公共属性(get / set)方法对视为已映射。如果您想要对该字段进行注释,则需要将@XmlAccessorType( XmlAccessType.FIELD)
放在您的班级上。
如果您使用EclipseLink JAXB(MOXy)作为JAXB(JSR-222)提供程序(我是MOXy),那么您可以使用@XmlInverseReference
扩展名。
答案 1 :(得分:1)
将@XmlTransient移动到使用mappedBy选项的类的get方法(关系的反面)。