use of org.apache.cxf.jaxrs.validation.JAXRSBeanValidationFeature in project cxf by apache.
the class BookStoreCustomApplication method getSingletons.
@Override
public Set<Object> getSingletons() {
Set<Object> singletons = new HashSet<>();
singletons.add(new JacksonJsonProvider());
singletons.add(new ValidationExceptionMapper());
singletons.add(new JAXRSBeanValidationFeature());
singletons.add(new LoggingFilter());
return singletons;
}
Aggregations