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

tech.jhipster.config.JHipsterConfiguration Maven / Gradle / Ivy

Go to download

Server-side library used by applications created with the JHipster generator, see https://www.jhipster.tech/ for more information on JHipster

There is a newer version: 8.8.0
Show newest version
package tech.jhipster.config;

import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.annotation.PropertySources;

/**
 * Configure the usage of JHipsterProperties.
 */
@EnableConfigurationProperties(JHipsterProperties.class)
// Load some properties into the environment from files to make them available for interpolation in application.yaml.
@PropertySources(
    {
        @PropertySource(value = "classpath:git.properties", ignoreResourceNotFound = true),
        @PropertySource(value = "classpath:META-INF/build-info.properties", ignoreResourceNotFound = true),
    }
)
public class JHipsterConfiguration {}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy