반응형 분류 전체보기386 [springboot, jwt] JWT 사용하기 공식 페이지 https://jwt.io/ JWT.IO JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties. jwt.io JWT란? JSON Web Token의 약자로 웹표준(RFC 7519)으로 두 개체에서 JSON객체를 사용하여 가볍고 자가수용적(self-contained)인 방식으로 정보를 안정성 있게 전달. 자가수용적(self-contained) 이란? 필요한 모든 정보를 자체적으로 가지고 있음을 의미. 사용이유 장점 인증서버, 데이터 스토어 등 의존성 없음. 시스템 수평 확장 유리 Base64 URL SAFE ENCODING 으로 URL, Co.. 2021. 6. 23. [airflow] mysql 연동으로 수행할때 에러 (Reason: image not found) 에러메세지 $ airflow initdb Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/3.8/bin/airflow", line 25, in from airflow.configuration import conf File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/airflow/__init__.py", line 47, in settings.initialize() File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-pack.. 2021. 6. 19. [react] redux 대신 SWR으로 Local 상태 활용하기 Redux 로 상태관리 할 수 있지만 설정도 빡세고 해서 설렁설렁 쓰다가 알게된게 SWR이다. 인터넷에 보면 기능에 대한 정의나 사용법은 잘 나와있으니 쓰면되고 여기서는 Local 상태 관리에 대해서만 쓰려 한다. 다음처럼 컴포넌트를 구성한다. page: test.tsx component: Test1Component.tsx Test2Component.tsx 그리고 SWR을 Function 으로 만들어 쉽게 호출할 수 있게 한다 useTestSWR.tsx 그럼 각각의 파일을 보자. test.tsx 안에 각각의 컴포넌트를 다음처럼 등록해둔다 import React from "react"; import {Box, Divider} from "@material-ui/core"; import Test1Compone.. 2021. 6. 18. [spring cloud] eureka 설정 중 에러(Network level connection to peer localhost; retrying after delay) 유레카로 서버 등록 중 다음의 에러가 날 수 있다. 2021-06-10 07:45:24.862 ERROR 65998 --- [get_localhost-5] c.n.e.cluster.ReplicationTaskProcessor : Network level connection to peer localhost; retrying after delay com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused (Connection refused) ... 기본 포트(8761) 를 사용할 경우 별 문제가 되지 않는데 내 경우 포트를 변경했더니 이런 에러가 난다. 보아하니 등록되는 인스턴스가 있으면 주기적으.. 2021. 6. 10. [spring, mssql, sqlserver] 접속에러 (TLS10) The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12] 직역해보면 서버에서 선택한 프로토콜 버전 TLS10이 클라이언트 기본 설정에서 허용되지 않습니다. [TLS13, TLS12] 라는 의미다. 풀 에러메세지를 보면 다음과 같다. Failed to obtain JDBC Connection; nested exception is com.microsoft.sqlserver.jdbc.SQLServerException: 드라이버가 SSL(Secure Sockets Layer) 암호화를 사용하여 SQL Sever로 보안 연결을 설정할 수 없습니다. 오류: "The server selected prot.. 2021. 5. 28. [java] Localdatetime 을 몇분 전, 몇초 전 으로 변경하기 코드는 간단하다. ... public static String convertLocaldatetimeToTime(LocalDateTime localDateTime) { LocalDateTime now = LocalDateTime.now(); long diffTime = localDateTime.until(now, ChronoUnit.SECONDS); // now보다 이후면 +, 전이면 - String msg = null; if (diffTime < SEC){ return diffTime + "초전"; } diffTime = diffTime / SEC; if (diffTime < MIN) { return diffTime + "분 전"; } diffTime = diffTime / MIN; if (diffTim.. 2021. 5. 26. 이전 1 ··· 6 7 8 9 10 11 12 ··· 65 다음 반응형