avaysberg

Results 4 comments of avaysberg

Hi, this the sampe-app like attachment: [sample-app.zip](https://github.com/paypal/resteasy-spring-boot/files/1180958/sample-app.zip) # **Case Spring-Boot standalone** ## **This the logs if I start like standalone:** _Server:_ 20:40:24.121 [localhost-startStop-1] INFO org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@19be589f: startup date [Thu...

Hi, i think, that the problem is, that standalone spring boot find this dependencies: org.jboss.resteasy resteasy-validator-provider-11 3.1.3.Final but the web spring boot doesn't find it. The question is why? RESTEasy...

Hi, so, make it working for both cases. I prepare this configuration object and prepare the ValidatorContextResolver: ``` java package com.sample.app; import org.jboss.resteasy.plugins.validation.ValidatorContextResolver; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class...

Today I spent some time and found out, that the classes with @Provider not load, but ValidatorContextResolver is annotated: `@Provider public class ValidatorContextResolver extends AbstractValidatorContextResolver implements ContextResolver { } `