Does anybody know how to delete the entries in the jpa cross store? I delete my nodes in the graph database with "template.delete()" / "repository.delete()". I don't want to delete all entries.
Type: Posts; User: wer1; Keyword(s):
Does anybody know how to delete the entries in the jpa cross store? I delete my nodes in the graph database with "template.delete()" / "repository.delete()". I don't want to delete all entries.
Thanks for your help. Not I got it. The only problem is that all attributes of the "File"-class are generated and saved in the sql database. Any ideas for this?
Maybe someone can give me a full example on how to persist data in a cross store.
No ideas? can nobody help me?
Thanks for your reply.
I tried to use separate fields but there is no difference in the database.
And the other source-code:
Class of File
import java.io.Serializable;
import javax.persistence.*;
import org.springframework.data.annotation.Transient;
import...
Hi at all,
I use Neo4j and the Neo4JTemplate to persist my Data.
I have a class named File. I would like to store the bytes field in an extra SQLite database (or all fields). Bellow you can see...