Masud Rahman
Masud Rahman

Reputation: 1062

Java source to RDF conversion

Is there a way to convert java source directly to equivalent RDF? I am aware of manually creating and java object to RDF/OWL object mapping by Jena API, but I need the automation of the mapping of java source code to RDF/OWL object. Is there any available tool for that?

Thanks in advance

Upvotes: 1

Views: 556

Answers (1)

Michael
Michael

Reputation: 4886

You might check out Empire, which is integration between JPA and SPARQL letting you build an application around standard POJOs which are stored in an RDF triplestore. It handles round-tripping between RDF and Java for you and abstracts most of the details of RDF -- though some SPARQL knowledge is ideal.

Upvotes: 1

Related Questions