我正在使用椭圆验证 Fwk + Spring。我想使用注释验证我的业务逻辑方法。我在椭圆形页面中找到了一个很好的例子。 http://best-practice-software-engineering.ifs.tuwien.ac.at/repository/net/sf/oval/oval/1.61/tmp/docs/userguide.html#d4e489
用于创建自定义验证。但是提供的示例似乎在方法执行之后而不是之前起作用。有没有办法实现与示例相同但之前执行的操作?
这是我的弹簧配置。
<bean id="ovalGuardInterceptor" class="net.sf.oval.guard.GuardInterceptor" />
<bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
<property name="proxyTargetClass" value="true" />
<property name="beanNames" value="productGetBusinessLogic" />
<property name="interceptorNames"><list><value>ovalGuardInterceptor</value></list></property>
</bean>
这是我的支票课
import net.sf.oval.Validator;
import net.sf.oval.configuration.annotation.AbstractAnnotationCheck;
import net.sf.oval.context.OValContext;
public class TestValidatorCheck extends AbstractAnnotationCheck<TestValidator> {
public boolean isSatisfied(Object validatedObject, Object valueToValidate, OValContext context, Validator validator) {
if (valueToValidate == null)
return true;
String val = valueToValidate.toString();
return val.equals(val.toUpperCase());
}
}
这是我的注释类
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
@Documented
@net.sf.oval.configuration.annotation.Constraint(checkWith = TestValidatorCheck.class)
public @interface TestValidator {
/**
* Message to be used for the ConstraintsViolatedException
*
* @see ConstraintsViolatedException
*/
String message() default "must be upper case";
}
这就是方法的注释方式
@Override
@TestValidator
public ProductGetResponse getProductBulk(ProductGetKey productGetKey) throws ItemWrapperApiException {
让我知道我在这里缺少什么。谢谢。