springboot
![[Spring boot] swagger 기본 설정](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Fb2nnaH%2FbtrDpPz4Coe%2FAAAAAAAAAAAAAAAAAAAAABwJNqk30OPnvaIdNPNWLi8Byxls-tfE9sOCX2-MrS8L%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DyF0dqLQZteTujtlFjWEggRx0R%252FE%253D)
[Spring boot] swagger 기본 설정
build.gradle dependencies에 다음 추가 dependencies { ... // swagger ui implementation 'io.springfox:springfox-boot-starter:3.0.0' implementation 'io.springfox:springfox-swagger-ui:3.0.0' } SwaggerConfig.java package com.example.simpleBoard; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.ApiInfoBu..
[Spring boot] mybatis 설정 sqlsession 관련 설정이 필요없는 이유
http://mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure mybatis-spring-boot-autoconfigure – Introduction Introduction What is MyBatis-Spring-Boot-Starter? The MyBatis-Spring-Boot-Starter help you build quickly MyBatis applications on top of the Spring Boot. By using this module you will achieve: Build standalone applications Reduce the boilerplate to almost z mybatis.org 위 링크의 Q..