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

META-INF.spring-launcher.groovy Maven / Gradle / Ivy

/*
 * Copyright (C) 2017 ~ 2025 the original author or authors.
 *  Technology CO.LTD.
 * All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Reference to website: http://wl4g.com
 */

import static com.wl4g.component.common.lang.ClassUtils2.isPresent
import static org.springframework.boot.context.config.ConfigFileApplicationListener.*

import org.springframework.boot.Banner

import com.wl4g.component.core.boot.listener.ISpringLauncherConfigurer

/**
 * Default implementation of {@link ISpringLauncherConfigurer}
 */
class DefaultSpringLauncherConfigurer implements ISpringLauncherConfigurer {

	@Override
	def int getOrder() {
		return 0
	}

	def Banner.Mode bannerMode() {
		return Banner.Mode.LOG;
	}

	@Override
	def Properties defaultProperties() {
		def defaultProperties = new Properties()
		// Preset spring.config.name
		// for example: spring auto load for 'application-dev.yml/application-data-dev.yml'
		defaultProperties.put(CONFIG_NAME_PROPERTY,
				"""
application,
application-data,
application-service,
application-web,
""")

		// Preset spring.config.location
		// for example: spring auto load for 'classpath:/application-data-dev.yml'
		def location = new StringBuffer("classpath:/")
		if (isPresent("org.springframework.cloud.openfeign.FeignClient") && isPresent("org.springframework.cloud.openfeign.FeignAutoConfiguration")) {
			location.append(",classpath:/scf/")
		} else if (isPresent("com.wl4g.component.rpc.springboot.feign.annotation.SpringBootFeignClient")) {
			location.append(",classpath:/sbf/")
		}
		defaultProperties.put(CONFIG_ADDITIONAL_LOCATION_PROPERTY, location.toString())

		return defaultProperties
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy