我按照此link中列出的步骤进行操作(直到步骤5.1),以集成swagger文档。下面是我的控制器类的外观。尝试访问文档时出现404错误,类似于使用url> http://localhost:8080/greetingservice/swagger-ui.html在文档中描述的方式
但是我看到使用url http://localhost:8080/swagger-ui.html#!/greeting-controller/greetingUsingGET的文档
我希望显示的文档类似于在特定于该应用的上下文路径下的文档中提到的文档。你能让我知道我在想什么吗?
import java.util.concurrent.atomic.AtomicLong;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.comcast.rapid.ctp.springfox.service.model.Greeting;
@RequestMapping("/greetingservice")
@RestController
public class GreetingController {
private static final String template = "Hello, %s!";
private final AtomicLong counter = new AtomicLong();
@RequestMapping(method={RequestMethod.GET}, value="{apiName}", produces=MediaType.APPLICATION_JSON_VALUE)
public Greeting greeting(@RequestParam(value="name", defaultValue="World") String name,@PathVariable String apiName) {
return new Greeting(counter.incrementAndGet(),
String.format(template, name));
}
}
最佳答案
当我尝试访问类似于以下文档时,出现404错误
如何使用url>在文档中进行描述
http://localhost:8080/greetingservice/swagger-ui.html
您需要如下设置应用程序上下文路径:
在application.properties
中创建src/main/resources
并添加以下行:
server.context-path=/greetingservice
参考:
http://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
关于java - 将SpringFox Swagger与Springboot应用程序集成,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38214008/