如何在 Java 或 Kotlin 中用我自己的注释包装 @Column 注释
How to wrap @Column annotation with my own annotation in Java or Kotlin
我只是想拥有自己的注释来清理大量注释并能够在需要时轻松更改它们;
import javax.persistence.Column
import javax.validation.constraints.Size
class Foo(){
@Column(name="bar_", nullable = false, length = 32)
@Size(min = 32, max = 32)
String bar;
@Column(nullable = false, length = 32)
@Size(min = 32, max = 32)
String bas;
@Column(nullable = false, length = 32, unique=true)
@Size(min = 32, max = 32)
String baq;
}
希望我能
class Foo(){
@MyColumn(name="bar_")
String bar;
@MyColumn
String bas;
@MyColumn(unique=true)
String baq;
}
nullable = false, length = 32
是默认参数。
Java 欢迎使用 Kotlin 解决方案。
对于您可以使用的尺码
@Size(min = 32, max = 32)
@Inherited
annotation class DefaultSize()
然而,为 super 设置动态参数,例如 @Column
中的 name
会使事情变得有点复杂。我相信您需要为此进行某种运行时注释修改,请参阅 Changing Annotation Parameters Runtime
由于您使用的是从 javax
导入的第 3 方注释,因此最好的选择是引入复合注释。 (Kotlin doesn't support 注解继承.
@Column(name = "bar_", nullable = false, length = 32)
@Size(min = 32, max = 32)
annotation class Anno
Spring boot 将大量配置注释组合在一起做得很好 - check it out.
复合注释有问题 Anno
,不过。您必须提供具有常量值的注释参数。
如果你确定,你需要一个参数化的注释,比如
@Column(...)
@Size(min = Anno.max, max = Anno.min)
annotation class Anno(val min: Int, val max: Int)
看看Kapt或Kotlin Compiler插件,你需要一段代码生成。
使用 Kapt 或 Kotlin 编译器插件,您只需重写自定义 ClassBuilder
:
的 newField
方法
override fun newField(
origin: JvmDeclarationOrigin,
access: Int,
name: String,
desc: String,
signature: String?,
value: Any?
): FieldVisitor {
// if field is annotated with Anno -- add two custom annotation with parameters of your choice
// otherwise perform a standard field init
}
然后用
注册
class AnnoRegister : ComponentRegistrar {
override fun registerProjectComponents(
project: MockProject,
configuration: CompilerConfiguration
) {
...
}
将此处理集成到现有的 gradle 或 maven 项目中应该相对容易,或者直接传递给 kotlinc
.
我只是想拥有自己的注释来清理大量注释并能够在需要时轻松更改它们;
import javax.persistence.Column
import javax.validation.constraints.Size
class Foo(){
@Column(name="bar_", nullable = false, length = 32)
@Size(min = 32, max = 32)
String bar;
@Column(nullable = false, length = 32)
@Size(min = 32, max = 32)
String bas;
@Column(nullable = false, length = 32, unique=true)
@Size(min = 32, max = 32)
String baq;
}
希望我能
class Foo(){
@MyColumn(name="bar_")
String bar;
@MyColumn
String bas;
@MyColumn(unique=true)
String baq;
}
nullable = false, length = 32
是默认参数。
Java 欢迎使用 Kotlin 解决方案。
对于您可以使用的尺码
@Size(min = 32, max = 32)
@Inherited
annotation class DefaultSize()
然而,为 super 设置动态参数,例如 @Column
中的 name
会使事情变得有点复杂。我相信您需要为此进行某种运行时注释修改,请参阅 Changing Annotation Parameters Runtime
由于您使用的是从 javax
导入的第 3 方注释,因此最好的选择是引入复合注释。 (Kotlin doesn't support 注解继承.
@Column(name = "bar_", nullable = false, length = 32)
@Size(min = 32, max = 32)
annotation class Anno
Spring boot 将大量配置注释组合在一起做得很好 - check it out.
复合注释有问题 Anno
,不过。您必须提供具有常量值的注释参数。
如果你确定,你需要一个参数化的注释,比如
@Column(...)
@Size(min = Anno.max, max = Anno.min)
annotation class Anno(val min: Int, val max: Int)
看看Kapt或Kotlin Compiler插件,你需要一段代码生成。
使用 Kapt 或 Kotlin 编译器插件,您只需重写自定义 ClassBuilder
:
newField
方法
override fun newField(
origin: JvmDeclarationOrigin,
access: Int,
name: String,
desc: String,
signature: String?,
value: Any?
): FieldVisitor {
// if field is annotated with Anno -- add two custom annotation with parameters of your choice
// otherwise perform a standard field init
}
然后用
注册class AnnoRegister : ComponentRegistrar {
override fun registerProjectComponents(
project: MockProject,
configuration: CompilerConfiguration
) {
...
}
将此处理集成到现有的 gradle 或 maven 项目中应该相对容易,或者直接传递给 kotlinc
.