On 20/12/12 13:45, Jie wrote:
Hello, everyone,
I am planning to use RDFBean in my project to synchronize the javabean
and ontology stored in the Jena TDB. However, as the RDFBean was last
updated in 2011, is there anyone having the experience of using these
two together? I wonder that if it can support the transaction
processing in Jena TDB. Thank you very much.
Best Regards,
Jie
(I have not used RDFBean)
Isn't RDFBean written using RDF2Go? Theer is an RDf2Go for Jena 2.9 (!!
no such version - I think they mean ARQ 2.9 and Jena 2.7)
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-arq</artifactId>
<version>2.9.3</version>
</dependency>
is reasonable up to date. RDFBean may "just work" by updating dependencies.
What may work with transactions is:
Start transaction
Get model from (now transactional) dataset.
Wrap in RDF2Go
Use with RDfBean
Commit/abort transaction
Andy