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

io.micronaut.jackson.env.CloudFoundryVcapApplicationPropertySourceLoader Maven / Gradle / Ivy

There is a newer version: 4.6.5
Show newest version
/*
 * Copyright 2017-2019 original authors
 *
 * 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.
 */
package io.micronaut.jackson.env;

import com.fasterxml.jackson.core.JsonParseException;
import io.micronaut.context.env.MapPropertySource;
import io.micronaut.context.exceptions.ConfigurationException;
import io.micronaut.core.io.ResourceLoader;

import java.io.IOException;
import java.io.InputStream;
import java.util.Collections;
import java.util.Map;
import java.util.Optional;
import java.util.Set;

/**
 * 

A {@link io.micronaut.context.env.PropertySourceLoader} that reads from the environment variable VCAP_APPLICATION * which is used by CloudFoundry.

* * @author Fabian Nonnenmacher * @since 2.0 */ public class CloudFoundryVcapApplicationPropertySourceLoader extends EnvJsonPropertySourceLoader { /** * Position for the system property source loader in the chain. */ public static final int POSITION = EnvJsonPropertySourceLoader.POSITION + 10; private static final String VCAP_APPLICATION = "VCAP_APPLICATION"; @Override public int getOrder() { return POSITION; } @Override public Set getExtensions() { return Collections.singleton(VCAP_APPLICATION); } @Override protected String getEnvValue() { return System.getenv(VCAP_APPLICATION); } @Override protected Optional readInput(ResourceLoader resourceLoader, String fileName) { if (fileName.equals("application." + VCAP_APPLICATION)) { return getEnvValueAsStream(); } return Optional.empty(); } @Override protected void processInput(String name, InputStream input, Map finalMap) throws IOException { try { Map map = readJsonAsMap(input); processMap(finalMap, map, "vcap.application."); } catch (JsonParseException e) { throw new ConfigurationException("Could not parse '" + VCAP_APPLICATION + "'." + e.getMessage(), e); } } @Override protected MapPropertySource createPropertySource(String name, Map map, int order) { return super.createPropertySource("cloudfoundry-vcap-application", map, order); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy