我想知道是否有可能将动态值传递给注释属性。
我知道注释不是为了修改而设计的,但是我使用的是休眠过滤器,并且在我的情况下要放置的条件不是静态的。
我认为唯一的解决方案是使用旨在读取和修改字节码的库,例如 Javassist 或ASM,但如果有其他解决方案会更好。
ps:在我的情况下,困难在于我应该修改注释(属性的值)但是我上面提到的库允许创建不编辑这就是为什么我想知道另一种解决方案
提前致谢
我不知道它是否与您的框架很好地集成,但我想提出以下建议:
我在 Groovy 中编写了以下示例,但使用了标准 Java 库和惯用的 Java。如果有任何内容不可读,请警告我:
import java.lang.annotation.*
// Our Rule interface
interface Rule<T> { boolean isValid(T t) }
// Here is the annotation which can receive a Rule class
@Retention(RetentionPolicy.RUNTIME)
@interface Validation { Class<? extends Rule> value() }
// An implementation of our Rule, in this case, for a Person's name
class NameRule implements Rule<Person> {
PersonDAO dao = new PersonDAO()
boolean isValid(Person person) {
Integer mode = dao.getNameValidationMode()
if (mode == 1) { // Don't hardcode numbers; use enums
return person.name ==~ "[A-Z]{1}[a-z ]{2,25}" // regex matching
} else if (mode == 2) {
return person.name ==~ "[a-zA-Z]{1,25}"
}
}
}
在这些声明之后,用法:
// Our model with an annotated field
class Person {
@Validation(NameRule.class)
String name
}
// Here we are mocking a database select to get the rule save in the database
// Don't use hardcoded numbers, stick to a enum or anything else
class PersonDAO { Integer getNameValidationMode() { return 1 } }
注释的处理:
// Here we get each annotation and process it against the object
class AnnotationProcessor {
String validate(Person person) {
def annotatedFields = person.class.declaredFields.findAll { it.annotations.size() > 0 }
for (field in annotatedFields) {
for (annotation in field.annotations) {
Rule rule = annotation.value().newInstance()
if (! rule.isValid(person)) {
return "Error: name is not valid"
}
else {
return "Valid"
}
}
}
}
}
和测试:
// These two must pass
assert new AnnotationProcessor().validate(
new Person(name: "spongebob squarepants") ) == "Error: name is not valid"
assert new AnnotationProcessor().validate(
new Person(name: "John doe") ) == "Valid"
另外,看看GContracts,它提供了一些有趣的通过注释进行验证的模型。
注释参数是类文件中的硬编码常量。所以改变它们的唯一方法是生成一个新的类文件。
不幸的是,我对 Hibernate 不熟悉,因此我无法针对您的具体情况提出最佳选择。