I can't test the configuration for the Swagger API in Spring Boot Application using http://localhost:8080/forest/v2/api-docs It is showing 404 not found
Also, http://localhost:8080/forest/swagger-ui.html is showing 404 not found along with a message
Unable to infer base url. This is common when using dynamic servlet registration or when the API is behind an API Gateway. The base url is the root of where all the swagger resources are served. For e.g. if the api is available at http://example.org/api/v2/api-docs then the base url is http://example.org/api/. Please enter the location manually:
Springfox 2.7.0
Swagger core 1.5.13
pom.xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.7.0</version>
</dependency>
SwaggerConf.java
@EnableSwagger2
public class SwaggerConf {
@Bean
public Docket newsApi() {
return new Docket(DocumentationType.SWAGGER_2)
.groupName("greetings")
.apiInfo(apiInfo())
.select()
.paths(regex("/greeting.*"))
.build();
}
private ApiInfo apiInfo() {
return new ApiInfoBuilder()
.title("Spring REST Sample with Swagger")
.description("Spring REST Sample with Swagger")
.termsOfServiceUrl("http://www-03.ibm.com/software/sla/sladb.nsf/sla/bm?Open")
.license("Apache License Version 2.0")
.licenseUrl("https://github.com/IBM-Bluemix/news-aggregator/blob/master/LICENSE")
.version("2.0")
.build();
}
}
Web.xml
<servlet>
<servlet-name>servletForest</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextAttForest</param-name>
<param-value>org.springframework.web.context.WebApplicationContext.ROOT</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>servletForest</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
I can't test the configuration for the Swagger API in Spring Boot Application using
http://localhost:8080/forest/v2/api-docsIt is showing 404 not foundAlso,
http://localhost:8080/forest/swagger-ui.htmlis showing 404 not found along with a messageUnable to infer base url. This is common when using dynamic servlet registration or when the API is behind an API Gateway. The base url is the root of where all the swagger resources are served. For e.g. if the api is available at http://example.org/api/v2/api-docs then the base url is http://example.org/api/. Please enter the location manually:Springfox 2.7.0
Swagger core 1.5.13
pom.xml
SwaggerConf.java
Web.xml