package com.sandu.ximon.admin.config; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component public class ServerConfig { @Value("${server-conf.ip}") public String SIP; private static String ServerIP; public static String getServerIP() { return ServerIP; } }