使用springdoc-openapi-ui 报错 Cannot read properties of null (reading 'id')
时间: 2023-12-27 18:23:34 浏览: 281
springdoc-openapi:具有spring-boot的OpenAPI 3库
使用springdoc-openapi-ui生成API文档时,如果出现“Cannot read properties of null (reading 'id')”错误,可能是由于以下原因之一导致的:
1. 您的Spring Boot版本太低,不支持springdoc-openapi-ui。请升级到Spring Boot 2.2.x或更高版本。
2. 您的pom.xml文件中缺少必要的依赖项。请确保您已经添加了以下依赖项:
```xml
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>1.5.12</version>
</dependency>
```
3. 您的应用程序配置中缺少必要的注释。请确保您已经添加了以下注释:
```java
@Configuration
@EnableSwagger2WebMvc
public class SwaggerConfig {
// your configuration
}
```
如果您已经检查了上述原因并且仍然遇到问题,请尝试清除浏览器缓存并重新加载页面。如果问题仍然存在,请尝试在GitHub上提交问题以获取更多帮助。
阅读全文