All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anaptecs.spring.impl.JerseyConfig Maven / Gradle / Ivy

There is a newer version: 1.24.1
Show newest version
package com.anaptecs.spring.impl;

import org.glassfish.jersey.server.ResourceConfig;
import org.springframework.context.annotation.Configuration;

import com.anaptecs.jeaf.jersey.impl.time.JavaTimeConverterProvider;
import com.anaptecs.spring.service.resource.PathlessServiceResource;
import com.anaptecs.spring.service.resource.ProductServiceResource;
import com.anaptecs.spring.service.resource.RESTProductServiceResource;

@Configuration
public class JerseyConfig extends ResourceConfig {

  public JerseyConfig( ) {
    register(ProductServiceResource.class);
    register(RESTProductServiceResource.class);
    register(PathlessServiceResource.class);
    register(JavaTimeConverterProvider.class);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy