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

net.guerlab.cloud.commons.i18n.MultiMessageSourceAwareAutoConfigure Maven / Gradle / Ivy

There is a newer version: 2024.11.1
Show newest version
/*
 * Copyright 2018-2024 guerlab.net and other contributors.
 *
 * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.gnu.org/licenses/lgpl-3.0.html
 *
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.guerlab.cloud.commons.i18n;

import java.util.List;

import lombok.extern.slf4j.Slf4j;

import org.springframework.beans.factory.ObjectProvider;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration;
import org.springframework.context.MessageSource;
import org.springframework.context.support.AbstractResourceBasedMessageSource;

/**
 * 消息源处理.
 *
 * @author guer
 */
@Slf4j
@AutoConfiguration(after = MessageSourceAutoConfiguration.class)
public class MultiMessageSourceAwareAutoConfigure {

	/**
	 * 注册消息源.
	 *
	 * @param messageSource 信息源
	 * @param providers     消息源处理提供者列表
	 */
	@Autowired
	public void registerMultiMessageSourceProvider(MessageSource messageSource, ObjectProvider providers) {
		if (!(messageSource instanceof AbstractResourceBasedMessageSource resourceBasedMessageSource)) {
			return;
		}

		providers.forEach(provider -> {
			String basename = provider.get();
			log.debug("add message source: {}", basename);
			resourceBasedMessageSource.addBasenames(basename);
		});
	}

	/**
	 * 注册消息源.
	 *
	 * @param messageSource 信息源
	 * @param providers     消息源列表处理提供者列表
	 */
	@Autowired
	public void registerMultiMessageBatchSourceProvider(MessageSource messageSource, ObjectProvider providers) {
		if (!(messageSource instanceof AbstractResourceBasedMessageSource resourceBasedMessageSource)) {
			return;
		}

		providers.forEach(provider -> {
			List baseNames = provider.get();
			log.debug("add message sources: {}", baseNames);
			resourceBasedMessageSource.addBasenames(baseNames.toArray(new String[] {}));
		});
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy