Help,

how do i do stuff like the following in Scala?

import org.hibernate.validator.constraints.ScriptAssert

@ScriptAssert.List({
    @ScriptAssert(script = "...", lang = "javascript"),
    @ScriptAssert(script = "...", lang = "javascript")})
link|improve this question
feedback

1 Answer

The correct syntax is as follows (Array(...) for arrays, new Nested(..) for nested annotations):

import org.hibernate.validator.constraints.ScriptAssert

@ScriptAssert.List(Array(
  new ScriptAssert(script = "...", lang = "javascript"),
  new ScriptAssert(script = "...", lang = "javascript")))
class Test
link|improve this answer
It won't work due to a known bug. – Vasil Remeniuk Sep 30 '10 at 7:18
Did you try it? Using Scala 2.8, this works for me. I just got the syntax wrong in my initial answer, but now it's corrected. – Lukas Rytz Oct 2 '10 at 9:42
I did try (against scala 2.8 and hibernate validator), and it doesn't work. Did you try? – Vasil Remeniuk Oct 2 '10 at 12:23
Your code gives "error: org.hibernate.validator.constraints.ScriptAssert does not have a constructor: new ScriptAssert(script = "...", lang = "javascript")))" – Vasil Remeniuk Oct 2 '10 at 12:46
1  
You need to put validation-api into the classpath. Here's the command I used for compiling the thing: ~/scala/dist/bin/scalac -cp /Users/luc/Downloads/hib/hibernate-validator-4.1.0.Final.jar:/Users/luc/Download‌​s/hib/validation-api-1.0.CR5.jar test.scala – Lukas Rytz Oct 2 '10 at 16:36
feedback

Your Answer

 
or
required, but never shown

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