목록Back-End (30)
HappyWeasel
현재 Spring Boot에서 swagger를 지원하는 라이브러리 중 추천하는 라이브러리는 2가지가 있다. 1. springfox - 2년간 업데이트가 안 되다가 최근에 업데이트 되었다. - 이번에 업데이트가 되면서 webflux도 지원한다. 2. springdoc - 현재 꾸준한 업데이트를 지원하고 있다. - 참고 : springdoc.org/ OpenAPI 3 Library for spring-boot Library for OpenAPI 3 with spring boot projects. Is based on swagger-ui, to display the OpenAPI description.Generates automatically the OpenAPI file. springdoc.org swagg..
보호되어 있는 글입니다.

참고 : jyami.tistory.com/121 Spring Security OAuth2 Login Flow www.callicoder.com/spring-boot-security-oauth2-social-login-part-2/ Spring Boot OAuth2 Social Login with Google, Facebook, and Github - Part 2 Integrate social login with Facebook, Google, and Githu.. jyami.tistory.com
jsp에서 el(expression language) 사용 여부 설정이 가능하다. k : ${k } k + 5 : ${k+5 } k - 5 : ${k-5 } k * 5 : ${k*5 } k / 5 : ${k div 5 } k : ${k } m : ${m }
출처 : https://www.edwith.org/boostcourse-web/lecture/16705/ [LECTURE] 2) forward : edwith 들어가기 전에 WAS의 서블릿이나 JSP가 요청을 받은 후 그 요청을 처리하다가, 추가적인 처리를 같은 웹 어플리케이션안에 포함된 다른 서블릿이나 JSP에게 위임하는 경우가 있습니... - 부스트코�� www.edwith.org forward란? 웹 브라우저에서 Servlet1에게 요청을 보냄 Servlet1은 요청을 처리한 후, 그 결과를 HttpServletRequest에 저장 Servlet1은 결과가 저장된 HttpServletRequest와 응답을 위한 HttpServletResponse를 같은 웹 어플리케이션 안에 있는 Servlet2에게..

출처 : https://www.edwith.org/boostcourse-web/joinLectures/12954 리다이렉트 (redirect) 리다이렉트는 HTTP프로토콜로 정해진 규칙이다. 서버는 클라이언트의 요청에 대해 특정 URL로 이동을 요청할 수 있다. 이를 리다이렉트라고 한다. 서버는 클라이언트에게 HTTP 상태코드 302로 응답하는데 이때 헤더 내 Location 값에 이동할 URL 을 추가한다. 클라이언트는 리다이렉션 응답을 받게 되면 헤더(Location)에 포함된 URL로 재요청을 보내게 된다. 이때 브라우저의 주소창은 새 URL로 바뀌게 된다.. 클라이언트는 서버로부터 받은 상태 값이 302이면 Location헤더값으로 재요청을 보내게 된다. 이때 브라우저의 주소창은 전송받은 URL로..

Could not get the value for parameter encoding for plugin execution default-resources Close Eclipse. Navigate to user home directory. (For example: "C:\Users\YourUserName\.m2") Delete the "repository" folder. Re-open Eclipse. Click on the Maven project that has an issue and go to "Project" --> "Clean". Right-click on the project and go to "Maven" --> "Update Project...". Close Eclipse. Open Ecli..