是否可以在 Scala 中定义 CDI 构造型?
要定义 CDI 构造型,我需要定义运行时注释。 在scala中,我尝试了这个:
@Stereotype
@Target(Array(ElementType.METHOD))
@Retention(RetentionPolicy.RUNTIME)
//... my stereotype annotations
class MyStereotype extends ClassfileAnnotation{}
但发现了这个问题:
实现限制:子类化 Classfile 不会使您的 注释在运行时可见。如果这就是你想要的,你必须 用Java编写注解类。
是否可以使用 scala 2.9.1 定义运行时注释?
To define a CDI stereotype, i would need to define a runtime annotation.
In scala, i tried this:
@Stereotype
@Target(Array(ElementType.METHOD))
@Retention(RetentionPolicy.RUNTIME)
//... my stereotype annotations
class MyStereotype extends ClassfileAnnotation{}
But found this problem:
Implementation restriction: subclassing Classfile does not make your
annotation visible at runtime. If that is what you want, you must
write the annotation class in Java.
Is it possible, using scala 2.9.1, to define runtime annotations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这纯粹是一个 Scala 问题,运行时重新注释必须在 Java 中完成。因此 CDI(以及其他构造型)应该在 Java 中完成。
This is purely a Scala issue where runtime renentive annotations must be done in Java. So CDI (as well as other stereotypes) should be done in Java.