Пользовательская ConstraintValidatior выполняется дважды в JAX-RS - PullRequest
1 голос
/ 05 июня 2019

При проверке решения, предоставленного для Есть ли способ получить переменную в пользовательский ConstraintValidator при использовании JAX-RS? Я заметил, что isValid вызывается дважды, и я сомневаюсь, что это правильно.

Я могу воссоздать проблему в двух WLP, с которыми я пытался:

  • WebSphere Application Server 19.0.0.2/wlp-1.0.25.cl190220190222-1311 на Java HotSpot (TM) Виртуальная машина 64-разрядного сервера, версия 1.8.0_161-b12 (en_US)
  • WebSphere Application Server 19.0.0.5/wlp-1.0.28.cl190520190522-2227 на виртуальной машине Java HotSpot (TM) 64-разрядного сервера,версия 1.8.0_161-b12 (en_US)

server.xml

    <featureManager>
        <feature>jaxrs-2.1</feature>
        <feature>localConnector-1.0</feature>
        <feature>transportSecurity-1.0</feature>
        <feature>beanValidation-2.0</feature>
        <feature>jaxrsClient-2.1</feature>
        <feature>cdi-2.0</feature>
    </featureManager>

Не удается найти в коде ничего, что объясняет двойную проверку.

Дамп стека показывает, что это происходит в том же потоке.Первый фрагмент стека проверки:

.....
    ValidatorImpl.validateParameters(T, Method, Object[], Class<?>...) line: 224    
    BeanValidationProvider.validateParameters(T, Method, Object[]) line: 113    
    GeneratedMethodAccessor593.invoke(Object, Object[]) line: not available 
    Method.invoke(Object, Object...) line: not available    
    LibertyJaxRsInvoker.callValidationMethod(String, Object[], Object) line: 371    
    LibertyJaxRsInvoker.invoke(Exchange, Object, Method, List<Object>) line: 254    
    LibertyJaxRsInvoker(JAXRSInvoker).invoke(Exchange, Object, Object) line: 205    
.....

Второй фрагмент стека проверки спустя пару мс:

....
    ValidatorImpl.validateParameters(T, Method, Object[], Class<?>...) line: 224    
    ValidationInterceptor.validateMethodInvocation(InvocationContext) line: 66  
    GeneratedMethodAccessor662.invoke(Object, Object[]) line: not available 
    Method.invoke(Object, Object...) line: not available    
    SimpleInterceptorInvocation$SimpleMethodInvocation.invoke(InvocationContext) line: 73   
    InterceptorMethodHandler.executeAroundInvoke(Object, Method, Method, Object[], InterceptorMethodHandler$CachedInterceptionChain, InterceptionDecorationContext$Stack) line: 84  
    InterceptorMethodHandler.executeInterception(Object, Method, Method, Object[], InterceptionType, InterceptionDecorationContext$Stack) line: 72  
    InterceptorMethodHandler.invoke(InterceptionDecorationContext$Stack, Object, Method, Method, Object[]) line: 56 
    CombinedInterceptorAndDecoratorStackMethodHandler.invoke(InterceptionDecorationContext$Stack, Object, Method, Method, Object[], boolean, boolean) line: 79  
    CombinedInterceptorAndDecoratorStackMethodHandler.invoke(InterceptionDecorationContext$Stack, Object, Method, Method, Object[]) line: 68    
    CustomerResource$Proxy$_$$_WeldSubclass.postCustomer(Customer) line: not available  
    CustomerResource$Proxy$_$$_WeldClientProxy.postCustomer(Customer) line: not available   
    GeneratedMethodAccessor661.invoke(Object, Object[]) line: not available 
    Method.invoke(Object, Object...) line: not available    
    LibertyJaxRsServerFactoryBean.performInvocation(Exchange, Object, Method, Object[]) line: 652   
    LibertyJaxRsInvoker.performInvocation(Exchange, Object, Method, Object[]) line: 160 
    LibertyJaxRsInvoker(AbstractInvoker).invoke(Exchange, Object, Method, List<Object>) line: 96    
    LibertyJaxRsInvoker.invoke(Exchange, Object, Method, List<Object>) line: 273    
    LibertyJaxRsInvoker(JAXRSInvoker).invoke(Exchange, Object, Object) line: 205
....

Разве проверка не должна вызываться только один раз?

...