com.yanxisir.neb.config.properties.NebProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neb-call Show documentation
Show all versions of neb-call Show documentation
A http toolkit for nebulas
package com.yanxisir.neb.config.properties;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* @author YanxiSir
* @since 2018/5/18
*/
@Data
@ConfigurationProperties(prefix = "neb")
public class NebProperties {
private final Http http = new Http();
@Data
public static class Http {
private String host;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy