com.sap.cloud.yaas.servicesdk.springboot.WebApplicationAutoConfiguration Maven / Gradle / Ivy
/*
* © 2017 SAP SE or an SAP affiliate company.
* All rights reserved.
* Please see http://www.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and
* notices.
*/
package com.sap.cloud.yaas.servicesdk.springboot;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
/**
* Auto Configuration class that configures web application related properties and beans.
*/
@Configuration
@ConditionalOnWebApplication
@PropertySource("classpath:/com/sap/cloud/yaas/servicesdk/springboot/web-application-default.properties")
public class WebApplicationAutoConfiguration
{
// so far this configuration class merely sources configuration properties
}