com.capitalone.dashboard.config.RestApiAppConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-audit Show documentation
Show all versions of api-audit Show documentation
Hygieia Audit Rest API Layer
package com.capitalone.dashboard.config;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.FilterType;
import org.springframework.core.annotation.Order;
import org.springframework.web.bind.annotation.RestController;
@Order(1)
@Configuration
@ComponentScan(
excludeFilters = {
@ComponentScan.Filter(RestController.class),
@ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, value = WebMVCConfig.class)
},
basePackages = "com.capitalone.dashboard"
)
public class RestApiAppConfig {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy