Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写spring应用程序。我在我的项目中添加了swagger,但不知何故它无法正常运行。进入我的项目也有带有令牌的不记名身份验证。请给我一个提示我如何解决这个问题
<dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-ui</artifactId> <version>1.1.44</version> </dependency>
首先使用最后一个稳定版本。
这应该有助于:
<dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-ui</artifactId> <version>1.4.4</version> </dependency>
如果问题仍然存在,请添加有关您的代码的更多相关信息以重现它。