Need to produce url dynamically in spring boot for swagger

146 Views Asked by At

Have this small code snippet

public ApiInfo getApiInformation(){
    return new ApiInfo("EPGRAPH-API",
        "This is EPGRAPH-API created to load Edges and Vertex to TigerGraph",
        "1.0",
        "",
         new Contact("EEPGraph Team", "http://localhost:8080/avc/xyz”, ""),
        "",
        "",
        Collections.emptyList()
    );
}

At the line new Contact("EEPGraph Team", "http://localhost:8080/avc/xyz”, ""), I need to replace http://localhost:8080/avc/xyz dynamically so that every time when application run, it takes url dynamically in stead of hardcoding the value.

0

There are 0 best solutions below