Spring Swagger授权按钮

问题描述 投票:0回答:1

我通过以下依赖对我的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输入,但是它在查询字符串上添加了键。我应该怎么做才能设置承载令牌?

spring swagger swagger-ui swagger-2.0
1个回答
0
投票

您可以通过从WebSecurityConfigurerAdapter扩展类来使用Spring Security并覆盖bean的Jwtautentication过滤器

© www.soinside.com 2019 - 2024. All rights reserved.