ServerIpConfig.java
433 Bytes
package com.huaheng.framework.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@Component
@ConfigurationProperties(prefix = "server")
public class ServerIpConfig {
    private static String port;
    public static String getPort() {
        return port;
    }
    public void setPort(String port) {
        ServerIpConfig.port = port;
    }
}