datasurvey/src/main/java/org/datasurvey/config/ApplicationProperties.java

13 lines
420 B
Java

package org.datasurvey.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Properties specific to Data Survey.
* <p>
* Properties are configured in the {@code application.yml} file.
* See {@link tech.jhipster.config.JHipsterProperties} for a good example.
*/
@ConfigurationProperties(prefix = "application", ignoreUnknownFields = false)
public class ApplicationProperties {}