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

com.github.developframework.kite.boot.KiteProperties Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package com.github.developframework.kite.boot;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component
@ConfigurationProperties(prefix = "kite")
@Getter
@Setter
public class KiteProperties {

    private String locations = "classpath*:kite/*.xml";

    private KiteJsonProperties json = new KiteJsonProperties();

    private KiteXmlProperties xml = new KiteXmlProperties();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy