SwaggerConfig ( 스프링부트 2버전 ) > SPRING_DATA_JPA

본문 바로가기
사이트 내 전체검색

SPRING_DATA_JPA

SwaggerConfig ( 스프링부트 2버전 )

페이지 정보

profile_image
작성자 관리자
댓글 0건 조회 107회 작성일 24-06-19 14:48

본문

package web.config;


import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.Configuration;


import springfox.documentation.builders.ApiInfoBuilder;

import springfox.documentation.builders.PathSelectors;

import springfox.documentation.builders.RequestHandlerSelectors;

import springfox.documentation.service.ApiInfo;

import springfox.documentation.spi.DocumentationType;

import springfox.documentation.spring.web.plugins.Docket;


@Configuration

public class SwaggerConfig {


private ApiInfo apiInfo() {

return new ApiInfoBuilder()

.title("프로젝트 Swagger")

.build();

}


@Bean

public Docket api() {

return new Docket(DocumentationType.OAS_30)

.useDefaultResponseMessages(false)

.select()

.apis(RequestHandlerSelectors.basePackage("web.controller"))

.paths(PathSelectors.any())

.build()

.apiInfo(apiInfo());

}

}





[설명]
작성후 프로젝트를 실행하면 오류가 난다.
오류를 해결하기 위해 CustomServletConfig 클래스 생성 후 @EnableWebMvc 추가
web.controller : 컨트롤러 패키지 경로 

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

공지사항
자유게시판
질문답변
1:1문의

 

별명 : 터푸가위
주소 : 부산시 동래구 명장로20번길 90
대표 : 박규태
메일 : dancepkt@******.com

접속자집계

오늘
64
어제
144
최대
10,760
전체
267,012
Copyright © dancePKT . All rights reserved.