Swagger 未检测到控制器

发布于 2025-01-11 12:22:20 字数 1988 浏览 0 评论 0原文

Swagger 未检测到任何控制器并显示不同类型的错误请求

在此处输入图像描述

SwaggerConfig :

@Configuration

public class SwaggerConfig {

    
@Bean
public Docket api() {
    return new Docket(DocumentationType.SWAGGER_2)
            .select()
            .apis(RequestHandlerSelectors.basePackage("tn.esprit.spring.controllers"))//Package+Classes
            .paths(PathSelectors.any()) //méthodes
            .build().apiInfo(apiInfo());
}
private ApiInfo apiInfo () {
    return new ApiInfoBuilder()
            .title("Swagger Configuration for Woman Area 5Project")
            .description("\"Spring Boot Swagger configuration\"")
            .version("1.0").build();
}

}

主要:

    @SpringBootApplication
@EnableSwagger2
public class ProjectApplication {

    public static void main(String[] args) {
        SpringApplication.run(ProjectApplication.class, args);
    }

}

网络安全配置:

@Override
protected void configure(HttpSecurity http) throws Exception {
    http.cors().and().csrf().disable()
            .exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and()
            .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
            .authorizeRequests().antMatchers("/api/auth/**").permitAll()
            .antMatchers("/api/test/**").permitAll()
            .antMatchers("/createcandidate").permitAll()
            .antMatchers("/downloadFile/{fileName:.+}").permitAll()
            .antMatchers("/avatar/{id}").permitAll()
            .antMatchers("/employees/{id}").permitAll()
            .antMatchers("/dureeConge/{id}").permitAll()
            .anyRequest().authenticated();

    http.addFilterBefore(authenticationJwtTokenFilter(), UsernamePasswordAuthenticationFilter.class);
}
@Override
public void configure(WebSecurity web) throws Exception {
    web.ignoring().antMatchers("/**");
}

Swagger don't detect any controllers and show error request of different type

enter image description here

SwaggerConfig:

@Configuration

public class SwaggerConfig {

    
@Bean
public Docket api() {
    return new Docket(DocumentationType.SWAGGER_2)
            .select()
            .apis(RequestHandlerSelectors.basePackage("tn.esprit.spring.controllers"))//Package+Classes
            .paths(PathSelectors.any()) //méthodes
            .build().apiInfo(apiInfo());
}
private ApiInfo apiInfo () {
    return new ApiInfoBuilder()
            .title("Swagger Configuration for Woman Area 5Project")
            .description("\"Spring Boot Swagger configuration\"")
            .version("1.0").build();
}

}

main:

    @SpringBootApplication
@EnableSwagger2
public class ProjectApplication {

    public static void main(String[] args) {
        SpringApplication.run(ProjectApplication.class, args);
    }

}

webSecurity config:

@Override
protected void configure(HttpSecurity http) throws Exception {
    http.cors().and().csrf().disable()
            .exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and()
            .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
            .authorizeRequests().antMatchers("/api/auth/**").permitAll()
            .antMatchers("/api/test/**").permitAll()
            .antMatchers("/createcandidate").permitAll()
            .antMatchers("/downloadFile/{fileName:.+}").permitAll()
            .antMatchers("/avatar/{id}").permitAll()
            .antMatchers("/employees/{id}").permitAll()
            .antMatchers("/dureeConge/{id}").permitAll()
            .anyRequest().authenticated();

    http.addFilterBefore(authenticationJwtTokenFilter(), UsernamePasswordAuthenticationFilter.class);
}
@Override
public void configure(WebSecurity web) throws Exception {
    web.ignoring().antMatchers("/**");
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文