com.appcrossings.config.JerseyConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appconfig-service Show documentation
Show all versions of appconfig-service Show documentation
Base Appconfig Spring Boot Application
package com.appcrossings.config;
import org.glassfish.jersey.server.ResourceConfig;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.stereotype.Component;
@Component
public class JerseyConfig extends ResourceConfig {
public JerseyConfig() {
register(AppConfigServiceImpl.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy