일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Design Patterns
- jenkins
- ubuntu
- JVM
- javascript
- Gradle
- devops
- Git
- php
- jsp
- 맛집
- Spring Boot
- IntelliJ
- Oracle
- AWS
- Spring Batch
- linux
- tool
- laravel
- db
- ReactJS
- redis
- springboot
- 요리
- MySQL
- it
- Spring
- java
- elasticsearch
- Web Server
- Today
- Total
목록swagger (4)
아무거나
Postman 에 Swagger 문서를 import 하는 방법 시작하기전에 먼저 Swagger 가 구축되어 있어야하고 당연히 Postman 또한 사용해야 한다. 사용방법 먼저 Swagger 에서 문서의 URL 을 복사한다. (우측클릭 > 링크 주소 복사) Postman Import 좌측 APIs > Import 클릭 Link 탭 > Enter a URL 의 상기 복사한 URL 을 입력 해당 방법 말고도 상기 URL 을 파일로 다운받아 Import > File 탭에서 업로드하는 방식 또는 Raw text 에 바로 텍스트를 Copy & Paste 하여 적용하는 방법등이 있다.
소스: base-document/springsecurity.md at master · bkjeon1614/base-document (github.com) Spring Security + H2 DB + Swagger 연동시 페이지 접근 예외 처리 [SecurityConfig.java] import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; import org.springframework.security.config.annotation.web.configura..
[Document] Tistory: https://bkjeon1614.tistory.com/256 Github: https://github.com/bkjeon1614/java-example-code/tree/master/swagger-example [Development Environment] IntelliJ IDEA Ultimate SpringBoot 2.1.4.RELEASE Java8 Gradle [Description] dependencies 추가 // const def swaggerVersion = '2.8.0' dependencies { ... // swagger compile group: 'io.springfox', name: 'springfox-swagger2', version: swagge..
Client(=User) -> Web Server -> API Server 로 구성되어 있는 하나의 시스템에서 서버 설정에 따라 크로스 도메인 이슈가 발생하곤 한다. 그래서 java 소스상에 @Configuration을 선언하고 WebMvcConfigurerAdapter를 상속받아 오버라이딩하여 메소드를 작성하면 해당 이슈는 해결된다. import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import..