I’ve encountered an error that makes me wonder if the latest MyEclipse is using old xdoclet. With Weblogic 9 and 10, some tag values changed for using the automatic-key-generator.
The behavior for the generator-type of the automatic-key-generator expects one of the following values: ORACLE,SQL_SERVER,NAMED_SEQUENCE_TABLE
In Weblogic 9 and 10, the only valid values for the generator-type are:
Identity, Sequence,SequenceTable
Basically, in my case, it is currently requiring:
* @weblogic.automatic-key-generation
* generator-type=”ORACLE”
But should be allowing:
* @weblogic.automatic-key-generation
* generator-type=”SEQUENCE”
When I look at Help->Plugin Details, I see the following versions for xdoclet:
org.eclipse.jst.j2ee.ejb.annotations.xdoclet (1.1.1.zmyeclipse55020070514)
org.eclipse.jst.j2ee.xdoclet.runtime (1.1.1.zmyeclipse55020070514)
But XDoclet’s site says they’re up to a 1.2, so does that mean that the latest MyEclipse has given me old XDoclet libs or is there some other way to tell what xdoclet libraries I’m actually using?
Right now, I can’t identify whether this is actually an XDoclet bug or not because I’m not sure what version I’m really using in MyEclipse.
Many thanks in advance to whomever can answer such a crazy question.