- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试访问 swagger ui 页面,但是当我要访问该页面时,出现此错误
此应用程序没有明确的/error 映射,因此您将其视为后备
我的项目树:
Swagger 配置类
@Configuration
@EnableSwagger2
public class SwaggerConfig {
@Bean
public Docket productApi() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.aluno"))
.paths(regex("/api.*"))
.build()
.apiInfo(metaInfo());
}
private ApiInfo metaInfo() {
ApiInfo apiInfo = new ApiInfo(
"Cursos API REST",
"API REST de registro de alunos.",
"1.0",
"Terms of Service",
new Contact("Romulo Sorato", "https://www.linkedin.com/in/r%C3%B4mulo-sorato-domingos-a6524437/",
"romulosorato@hotmail.com"),
"Apache License Version 2.0",
"https://www.apache.org/licesen.html", new ArrayList<>()
);
return apiInfo;
}
}
我的 pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>3.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>2.0.1.Final</version>
</dependency>
为什么我无法访问 swagger-ui?
最佳答案
看起来您想使用 Springfox3。如果是,请尝试以下更改。
删除 springfox-swagger2 和 springfox-swagger-ui 并在 pom.xml 中添加以下依赖项
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
SwaggerConfig - 删除 @EnableSwagger2
注释
@Configuration
public class SwaggerConfig {
@Bean
public Docket productApi() {
return new Docket(DocumentationType.SWAGGER_2)
.select()
.apis(RequestHandlerSelectors.basePackage("com.aluno"))
.paths(PathSelectors.any())
.build()
.apiInfo(metaInfo());
}
private ApiInfo metaInfo() {
ApiInfo apiInfo = new ApiInfo(
"Cursos API REST",
"API REST de registro de alunos.",
"1.0",
"Terms of Service",
new Contact("Romulo Sorato", "https://www.linkedin.com/in/r%C3%B4mulo-sorato-domingos-a6524437/",
"romulosorato@hotmail.com"),
"Apache License Version 2.0",
"https://www.apache.org/licesen.html", new ArrayList<>()
);
return apiInfo;
}
}
在此版本中,UI 的 URL 已更改如下:
http://localhost:8080/swagger-ui/index.html
如果你想要
使用旧版本 然后只需使用版本
2.9.2
(对我来说非常好)。在您的配置文件或 UI 的 URL 中不需要其他更改。
<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 - Springfox swagger-ui.html 未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65822218/
我正在使用 springfox 的招摇实现。我想修改 swagger-ui.html 以采用自定义 header 值。如何修改此文件?或者告诉spring fox使用备用文件? 最佳答案 从 gith
我有 spring-mvc 应用程序,我已经嵌入了 RestAPI。一切正常,我的 rest api 映射到 /rest/* url。当我添加 SwaggerConfig 它已经开始识别我的 Cont
我必须从 swagger 上传 MultipartFile 类型的多个文件来测试我的 api。 postman 确实允许上传,但是,同样的事情在 swagger 中不起作用。 多部分文件列表的代码:
我正在使用 SpringFox (Swagger)记录我的 REST API。 Swagger 的一大优点是显示示例模型和数据类型格式。 现在,我将我的 API 配置为以毫秒为单位生成和使用日期,但是
在 Springfox 3.0 中,springfox.documentation.service.Parameter已弃用。 是否有提供参数及其构建器的更新方法? 以及如何提供其default值(v
有没有办法在 springfox swagger (2.7.0) 中公开继承/多态性?我知道 swagger 规范支持 allOf。 springfox支持这个吗?以下是示例域模型。 @ApiMode
在我的 spring boot rest API 中,我为每个端点的每个响应(与方法无关)发回一个唯一的请求 id header “x-request-id”。我可以使用这样的东西添加它: @ApiR
在我的 Spring Boot Rest api 中,我有以下类: @Entity @Table(name="Items") @JsonPropertyOrder({ "itemId", "descr
目前使用 springfox 2.9.2 Swagger 记录在 Spring 中创建的 API。 我想在文档中添加示例响应,就像这张图片一样; 我的理解是我可以做类似的事情: @ApiRespons
我正在使用 Springfox-swagger 为我的 Spring Boot REST 服务生成一个 Swagger 页面。作为我序列化为 JSON 的 POJO 之一的一部分,我使用: javax
我有一个简单的 Spring Boot 应用程序,它有一个 REST 端点来返回一个“Job”对象,该对象包含一系列多态性,旁边还有其他内容。我们采用“代码优先”方法并尝试创建 API 模型来满足我们
这是我第一次来这里。因此,我们在 Spring MVC 中构建了一个应用程序,使用 2 个 Java 类作为 Controller 来处理 REST 调用。其中一个用 @Controller 显式注释
我想添加一个自定义 Controller 来 swagger API 描述符。 使用 spring fox 可以很容易地自定义现有模型。 但是我没有成功地从头开始将自定义 API 添加到 swagge
我正在尝试使用 swagger-codegen 和 springfox 在 Web 服务开发过程中赢得时间。 我遇到了为带注释的接口(interface)类以及 Controller 实现创建端点的问
我将 SpringFox 库用于我的 spring boot 应用程序的其余文档。当我点击 model 时,所有元素都作为可选元素返回。有没有办法将必需的元素显示为强制性的?是否需要添加任何其他配置?
@RequestMapping(...) public Foo getFoo(@HeaderParam("header") final String header) { ... } 像上面那样
GitHub:https://github.com/springfox/springfox 文档:http://springfox.io 在说swagger-bootstrap-ui的代码之前,先
我有一个特定的 DTO,我正在使用它作为 Swagger 文档的示例返回。如果我有成功的 201 代码,我该如何更改示例? 招摇的示例响应: 我使用注释“@ApiModelProperty”来描述我的
我在互联网上搜索了如何自定义我的多个案卷的端点,但没有找到答案。 我的模块有几个 API。我想在不同的端点上生成 Swagger 文档,每个端点都位于其相应 API 的根目录上。例如 : 本地主机:8
想知道如何在 POST 中隐藏 Swagger 中的模型属性。我已经尝试过 Swagger-springmvc (0.9.3) 和 Springfox(支持 swagger spec 2.0)都无济于
我是一名优秀的程序员,十分优秀!