diff --git a/src/main/java/com/example/helloworldmvc/config/SwaggerConfig.java b/src/main/java/com/example/helloworldmvc/config/SwaggerConfig.java index 4928b9c..35a796e 100644 --- a/src/main/java/com/example/helloworldmvc/config/SwaggerConfig.java +++ b/src/main/java/com/example/helloworldmvc/config/SwaggerConfig.java @@ -33,7 +33,7 @@ public OpenAPI helloWorldMVCAPI(){ .in(SecurityScheme.In.HEADER)); return new OpenAPI() - .addServersItem(new Server().url("/")) + .addServersItem(new Server().url("/mvc")) .info(info) .addSecurityItem(securityRequirement) .components(components);