vote up 8 vote down star
5

Java has annotations and that is good. However, some developers feel that it is best to annotate code with metadata using xml files - others prefer annotations but would use metadata to override annotations in source code.

I am writing a Java framework that uses annotations. The question is: is there a standard way to define and parse metadata from xml files. I think this is something every framework that uses annotations could benefit from but I can seem to find something like this on the Internet.

Must I roll my own xml parsing/validation or has someone already done something like this?

flag

+1 excellent question. I'm eager to find answers. – KLE Sep 24 at 8:27
there is no standard, you can check out hibernate or ejb3 sources to see how they do it, but i think it would be faster to roll out your own framework(it could become standard in the future). – 01 Sep 24 at 8:43
1  
beust.com/weblog/archives/000157.html <- this might help – 01 Sep 24 at 8:49
Hibernate is an example of a framework where you can use either Java5 annotations or XML metadata. Both get parsed into a neutral meta-data model. But there's a lot of history there, so it may not be the best way to go about things. – skaffman Sep 24 at 8:52
@01 Your pointing to the blog of Cedric Beust seem good enough for me, to be qualified as an answer :-) – KLE Sep 24 at 8:58
show 2 more comments

3 Answers

vote up 1 vote down check

There is not a standard way, but here are some Java frameworks who does it:

  • JPA - check ejb-3_0-fr-spec-persistence.pdf
  • Spring Framework
  • TestNG - as written above, though I think it focuses to much on the annotation side rather than the actual configuration he tries to achieve
  • Seam Framework
link|flag
vote up 0 vote down

It's not exactly what you want, but the backport175 project has an implementation of annotations for Java versions before Java 5.

It has some of the functionality you search in that it will read both its own style implementations and "real" annotations if they are present. Maybe this can be used as a starting point to build a more general framework.

link|flag
vote up 0 vote down

Use JAXB http://java.sun.com/developer/technicalArticles/WebServices/jaxb/ You would write the xsd for your metadata file, generate JAXB classes that can help you parse the xml files.

link|flag

Your Answer

Get an OpenID
or

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