我通过以下依赖对我的Spring项目实施了Swagger:
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
要访问我的API,我需要标头授权-承载令牌,但没有授权按钮。我减少了Swagger UI版本,可见了APIKey输入,但是它在查询字符串上添加了键。我应该怎么做才能设置承载令牌?
您可以通过从WebSecurityConfigurerAdapter扩展类来使用Spring Security并覆盖bean的Jwtautentication过滤器