我正在开发一个简单的HelloWorld Spring Boot应用程序,并且试图将Swagger配置为自动生成我的REST服务文档。
我正在关注本教程:http://www.baeldung.com/swagger-2-documentation-for-spring-rest-api
但是我面临一些困难。
我已经将以下Swagger依赖项添加到了maven pom.xml文件中:
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
以及Java配置类SwaggerConfig如下:
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build();
}
}
根据指南,这足以查看http://localhost:8080/v2/api-docs上生成的文档 但是,我收到“空白错误页面:此应用程序没有/ error的显式映射,因此您将其视为后备。”
我在http://localhost:8080/greeting/api/swagger-ui.html的Swagger UI页面上也遇到了相同的错误。
有关其他信息,我的HelloWorld代码如下:
package hello;
public class Greeting {
private final long id;
private final String content;
public Greeting(long id, String content) {
this.id = id;
this.content = content;
}
public long getId() {
return id;
}
public String getContent() {
return content;
}
}
而问候语控制器是
package hello;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.concurrent.atomic.AtomicLong;
@RestController
public class GreetingController {
private static final String template = "Hello, %s!";
private final AtomicLong counter = new AtomicLong();
@RequestMapping("/greeting")
public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name) {
return new Greeting(counter.incrementAndGet(),
String.format(template, name));
}
}
一切都在main / java下
如果有人对如何解决此问题有任何想法/建议,我将非常感谢!预先谢谢你:)