Swagger not working while doing CRUD operation through UI, also curl commands doesn't show the port
up vote
0
down vote
favorite
Whenever I am executing any command through Swagger UI, port
number is not coming through Swagger CURL commands and I think thats the reason its not fetching any data. @Ref: https://github.com/jhipster/generator-jhipster/issues/4036
curl -X GET "http://localhost/customer/v1/appdatas/productId/48bb04e0-c77b-4f78-9835-95fcebc47f48" -H "accept: application/json"
curl: (7) Failed to connect to localhost port 80: Connection refused
But If I add port number and execute that commands through curl then it works fine.
I am using springfox-swagger
version 2.9.2
.
curl -X GET "http://localhost/customer/v1/customerId/48bb04e0-c77b-4f78-9835-95fcebc47f48" -H "accept: application/json"
SwaggerConfig
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.host("localhost")
.groupName("GROUP")
.select()
.apis(Predicates.not(RequestHandlerSelectors.basePackage("org.springframework.boot")))
.apis(RequestHandlerSelectors.basePackage("com.test.com"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo())
.useDefaultResponseMessages(false)
.globalResponseMessage(
RequestMethod.GET,
newArrayList(new ResponseMessageBuilder().code(500).message("Error - 500").build()));
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Customer API")
.description("ZZZZZZZZZZZZ")
.version("0.1")
.build();
}
}
swagger swagger-ui springfox
add a comment |
up vote
0
down vote
favorite
Whenever I am executing any command through Swagger UI, port
number is not coming through Swagger CURL commands and I think thats the reason its not fetching any data. @Ref: https://github.com/jhipster/generator-jhipster/issues/4036
curl -X GET "http://localhost/customer/v1/appdatas/productId/48bb04e0-c77b-4f78-9835-95fcebc47f48" -H "accept: application/json"
curl: (7) Failed to connect to localhost port 80: Connection refused
But If I add port number and execute that commands through curl then it works fine.
I am using springfox-swagger
version 2.9.2
.
curl -X GET "http://localhost/customer/v1/customerId/48bb04e0-c77b-4f78-9835-95fcebc47f48" -H "accept: application/json"
SwaggerConfig
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.host("localhost")
.groupName("GROUP")
.select()
.apis(Predicates.not(RequestHandlerSelectors.basePackage("org.springframework.boot")))
.apis(RequestHandlerSelectors.basePackage("com.test.com"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo())
.useDefaultResponseMessages(false)
.globalResponseMessage(
RequestMethod.GET,
newArrayList(new ResponseMessageBuilder().code(500).message("Error - 500").build()));
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Customer API")
.description("ZZZZZZZZZZZZ")
.version("0.1")
.build();
}
}
swagger swagger-ui springfox
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Whenever I am executing any command through Swagger UI, port
number is not coming through Swagger CURL commands and I think thats the reason its not fetching any data. @Ref: https://github.com/jhipster/generator-jhipster/issues/4036
curl -X GET "http://localhost/customer/v1/appdatas/productId/48bb04e0-c77b-4f78-9835-95fcebc47f48" -H "accept: application/json"
curl: (7) Failed to connect to localhost port 80: Connection refused
But If I add port number and execute that commands through curl then it works fine.
I am using springfox-swagger
version 2.9.2
.
curl -X GET "http://localhost/customer/v1/customerId/48bb04e0-c77b-4f78-9835-95fcebc47f48" -H "accept: application/json"
SwaggerConfig
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.host("localhost")
.groupName("GROUP")
.select()
.apis(Predicates.not(RequestHandlerSelectors.basePackage("org.springframework.boot")))
.apis(RequestHandlerSelectors.basePackage("com.test.com"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo())
.useDefaultResponseMessages(false)
.globalResponseMessage(
RequestMethod.GET,
newArrayList(new ResponseMessageBuilder().code(500).message("Error - 500").build()));
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Customer API")
.description("ZZZZZZZZZZZZ")
.version("0.1")
.build();
}
}
swagger swagger-ui springfox
Whenever I am executing any command through Swagger UI, port
number is not coming through Swagger CURL commands and I think thats the reason its not fetching any data. @Ref: https://github.com/jhipster/generator-jhipster/issues/4036
curl -X GET "http://localhost/customer/v1/appdatas/productId/48bb04e0-c77b-4f78-9835-95fcebc47f48" -H "accept: application/json"
curl: (7) Failed to connect to localhost port 80: Connection refused
But If I add port number and execute that commands through curl then it works fine.
I am using springfox-swagger
version 2.9.2
.
curl -X GET "http://localhost/customer/v1/customerId/48bb04e0-c77b-4f78-9835-95fcebc47f48" -H "accept: application/json"
SwaggerConfig
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.host("localhost")
.groupName("GROUP")
.select()
.apis(Predicates.not(RequestHandlerSelectors.basePackage("org.springframework.boot")))
.apis(RequestHandlerSelectors.basePackage("com.test.com"))
.paths(PathSelectors.any())
.build()
.apiInfo(apiInfo())
.useDefaultResponseMessages(false)
.globalResponseMessage(
RequestMethod.GET,
newArrayList(new ResponseMessageBuilder().code(500).message("Error - 500").build()));
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Customer API")
.description("ZZZZZZZZZZZZ")
.version("0.1")
.build();
}
}
swagger swagger-ui springfox
swagger swagger-ui springfox
edited Nov 22 at 16:35
Ace
446215
446215
asked Nov 19 at 17:01
PAA
2,40321935
2,40321935
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53379440%2fswagger-not-working-while-doing-crud-operation-through-ui-also-curl-commands-do%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown