[LoadContexts] fail-safe cleanup
Bonjour,
j'aimerai savoir quel était le sens de cette erreur ?
Code:
1 2 3 4 5 6 7 8 9 10 11 12
|
14:56:58,004 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@1e6b1c<rs=org.postgresql.jdbc3.Jdbc3ResultSet@479446>
14:56:59,172 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@14c803d<rs=org.postgresql.jdbc3.Jdbc3ResultSet@a75818>
14:56:59,172 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@17757b9<rs=org.postgresql.jdbc3.Jdbc3ResultSet@a3e8f5>
14:56:59,172 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@204d14<rs=org.postgresql.jdbc3.Jdbc3ResultSet@7025de>
14:56:59,172 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@a48d59<rs=org.postgresql.jdbc3.Jdbc3ResultSet@1836525>
14:56:59,173 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@13c03bb<rs=org.postgresql.jdbc3.Jdbc3ResultSet@1437a6d>
14:56:59,173 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@118efc0<rs=org.postgresql.jdbc3.Jdbc3ResultSet@4f7eba>
14:56:59,173 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@242f04<rs=org.postgresql.jdbc3.Jdbc3ResultSet@10c7d5c>
14:56:59,173 WARN [LoadContexts] fail-safe cleanup (collections) : org.hibernate.engine.loading.CollectionLoadContext@18aef48<rs=org.postgresql.jdbc3.Jdbc3ResultSet@1ecdb1b>
.... et ça continue ! |
En faite j'ai un Entity MapObject qui possède une collection de Cells.
Et cela se produit lorsque j'affiche toutes les Cells de ma MapObject.
voici mon MapObject
Code:
1 2 3 4
|
@OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL)
@JoinTable(name = "map_cells", joinColumns = { @JoinColumn(name = "map_fk", nullable = true) })
private Set<Cells> cells; |
avez vous une idée ?
Comment supprimer ce warning ?
j'ai l'impression en plus que ce warning ralenti les perfs de mon appli (1sec).
En effet je constate l'affichage de mes Cells sur ma JSP uniquement à la fin de l'affichage des warnings dans ma console.
pour infos complémentaire, j'ai 81 cells à afficher, et j'ai compté environs 80 warning, cela serait donc lié ?!
j'espère que quelqu'un saura m'aider!
merci.