- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
'Not-Constant' Annotation Parameters using JDO in Scala 2.8
Sat, 2010-01-30, 10:37
Hi,
I am recently facing the following problem when trying to use the JDO annotations with the new syntax of Scala 2.8 (2.8.0.r20733-b20100130020228)
(various sources indicate it was possible in < 2.8)
#################
import javax.jdo.annotations.{IdGeneratorStrategy, PrimaryKey, Persistent, PersistenceCapable, IdentityType}
@PersistenceCapable(identityType = IdentityType.APPLICATION)
class TestObject(@PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) val key : Long) {
}
#################
This results in the following compile-time error. Eclipse indicates:
#################
"annotation argument needs to be a constant; found: IdGeneratorStrategy{<null>}.IDENTITY{<null>}"
#################
Looking up the class I can see that it actually is a 'constant enum':
http://db.apache.org/jdo/api21/apidocs/javax/jdo/annotations/IdGeneratorStrategy.html
#################
IDENTITY
public static final IdGeneratorStrategy IDENTITY
#################
So I wonder how to fix this or if there is a workaround know for these kind of issues.
Best Regards,
Nicolas
I am recently facing the following problem when trying to use the JDO annotations with the new syntax of Scala 2.8 (2.8.0.r20733-b20100130020228)
(various sources indicate it was possible in < 2.8)
#################
import javax.jdo.annotations.{IdGeneratorStrategy, PrimaryKey, Persistent, PersistenceCapable, IdentityType}
@PersistenceCapable(identityType = IdentityType.APPLICATION)
class TestObject(@PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) val key : Long) {
}
#################
This results in the following compile-time error. Eclipse indicates:
#################
"annotation argument needs to be a constant; found: IdGeneratorStrategy{<null>}.IDENTITY{<null>}"
#################
Looking up the class I can see that it actually is a 'constant enum':
http://db.apache.org/jdo/api21/apidocs/javax/jdo/annotations/IdGeneratorStrategy.html
#################
IDENTITY
public static final IdGeneratorStrategy IDENTITY
#################
So I wonder how to fix this or if there is a workaround know for these kind of issues.
Best Regards,
Nicolas
Fri, 2010-05-21, 14:17
#2
Re: 'Not-Constant' Annotation Parameters using JDO in Scala 2.
Is there any workaround to this at the moment (apart from working with 2.7 or having Java files for entity declarations) ?
Cheers,
Manohar
On Tue, Feb 2, 2010 at 6:56 PM, Nicolas Gramlich <plusminus@anddev.org> wrote:
Cheers,
Manohar
On Tue, Feb 2, 2010 at 6:56 PM, Nicolas Gramlich <plusminus@anddev.org> wrote:
From Miles Sabin To Me:
##############
Hi Nicolas,
This look like another instance of this compiler bug,
https://lampsvn.epfl.ch/trac/scala/ticket/2764
Cheers,
Miles
##############
--> Problem identified.
--
View this message in context: http://old.nabble.com/%27Not-Constant%27-Annotation-Parameters-using-JDO-in-Scala-2.8-tp27382440p27423690.html
Sent from the Scala - User mailing list archive at Nabble.com.
From Miles Sabin To Me:
##############
Hi Nicolas,
This look like another instance of this compiler bug,
https://lampsvn.epfl.ch/trac/scala/ticket/2764
Cheers,
Miles
##############
--> Problem identified.