I need to automatically generate (from a database) an XHTML document marked up with RDFa or some other microformat, it doesn't matter which one. How can I best do this using Java? I have been using Jena to output RDF/XML but it doesn't do RDFa unfortunately.

link|improve this question

43% accept rate
feedback

2 Answers

The reason that Jena doesn't provide an RDFa writer is that the whole point of RDFa is to be embedded in some other (human-readable) web page. I think your main option is to use something like Velocity or Freemarker to produce the pages with embedded calls out to Jena to get the appropriate RDF statements. You'll have to handle the RDFa encoding yourself. For testing, you could read your web pages back in using an RDFa reader to see if you get back the right set of triples, but really that's only half the story. You also need to test whether the page expresses the user-intent you want by enabling inline metadata, and that's much harder to test.

link|improve this answer
feedback

If you are willing to take another step forward, there are also Grails plugins that provide easy methods to produce RDFa from domain classes in views:

http://grails.org/plugin/rdfa

link|improve this answer
Thanks, looks a bit involved and I'd have to learn Groovy but I'll take a look. – eggbert Feb 1 at 10:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.