Package org.springframework.cloud.app

Examples of org.springframework.cloud.app.ApplicationInstanceInfo


            return new ResponseEntity<>("{}", HttpStatus.GONE);
        }
    }

    private String myUri() {
        ApplicationInstanceInfo applicationInstanceInfo = cloud.getApplicationInstanceInfo();
        List<Object> uris = (List<Object>) applicationInstanceInfo.getProperties().get("uris");
        return uris.get(0).toString();
    }
View Full Code Here

TOP

Related Classes of org.springframework.cloud.app.ApplicationInstanceInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.