본 포스팅은 정은구님의 Spring Boot JWT Tutorial 강의를 참고하여 작성하였습니다. 인프런 내에서도 무료 강의이니 시간 되시는 분은 시청하시는 것을 추천드립니다. 소스 코드는 여기 있습니다. (commit hash: 4277351) > git clone https://github.com/lcalmsky/jwt-tutorial.git > git checkout 4277351 JWT란? RFC 7519 웹 표준으로 JSON 객체를 사용해 토큰 자체에 정보를 저장하고 있는 웹 토큰입니다. 매우 가볍고 간편하며 구현하기 쉬운 인증방식으로 사이드 프로젝트 등에 많이 사용됩니다. (+실무에서도 사용합니다) 구성 아래 세 가지 파트로 구성되어있습니다. Header: Signature를 해싱하기 위한 ..
소스 코드는 여기 있습니다. 문제는 여기 있습니다. Problem Given two strings s and p, return an array of all the start indices of p's anagrams in s. You may return the answer in any order. An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. Example 1: Input: s = "cbaebabacd", p = "abc" Output: [0,6] Explanation: The..
소스 코드는 여기 있습니다. 문제는 여기 있습니다. Problem You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the future to sell that stock. Return the maximum profit you can achieve from this transaction. If you cannot achieve any profit, return 0. Example 1: Input: pric..
소스 코드는 여기 있습니다. 문제는 여기 있습니다. Problem Given an array, rotate the array to the right by k steps, where k is non-negative. Example 1: Input: nums = [1,2,3,4,5,6,7], k = 3 Output: [5,6,7,1,2,3,4] Explanation: rotate 1 steps to the right: [7,1,2,3,4,5,6] rotate 2 steps to the right: [6,7,1,2,3,4,5] rotate 3 steps to the right: [5,6,7,1,2,3,4] Example 2: Input: nums = [-1,-100,3,99], k = 2 Output: [3,..
소스 코드는 여기 있습니다. 문제는 여기 있습니다. Problem Given an array of integers heights representing the histogram's bar height where the width of each bar is 1, return the area of the largest rectangle in the histogram. Example 1: Input: heights = [2,1,5,6,2,3] Output: 10 Explanation: The above is a histogram where width of each bar is 1. The largest rectangle is shown in the red area, which has an area = ..
소스 코드는 여기 있습니다. 문제는 여기 있습니다. Problem You are given an m x n integer grid accounts where accounts[i][j] is the amount of money the ith customer has in the jth bank. Return the wealth that the richest customer has. A customer's wealth is the amount of money they have in all their bank accounts. The richest customer is the customer that has the maximum wealth. Exam..
본 포스팅은 백기선님의 스프링과 JPA 기반 웹 애플리케이션 개발 강의를 참고하여 작성하였습니다. 소스 코드는 여기 있습니다. (commit hash: 878b1db) > git clone https://github.com/lcalmsky/spring-boot-app.git > git checkout 878b1db ℹ️ squash merge를 사용해 기존 branch를 삭제하기로 하여 앞으로는 commit hash로 포스팅 시점의 소스 코드를 공유할 예정입니다. Overview 지난 포스팅에서 발생한 버그(가입 후 회원인증을 했음에도 가입 날짜가 업데이트 되지 않던)의 원인을 찾아 수정해봅니다. 원인 회원 인증(로그인)시 이메일 인증 날짜를 업데이트하고, 프로필에서 가입날짜를 조회할 때 DB의 날짜를 ..
소스 코드는 여기 있습니다. 문제는 여기 있습니다. Problem Design a data structure that supports adding new words and finding if a string matches any previously added string. Implement the WordDictionary class: WordDictionary() Initializes the object. void addWord(word) Adds word to the data structure, it can be matched later. bool search(word) Returns true if there is any string in the data structure that matches wo..
- Total
- Today
- Yesterday
- JPA
- Jackson
- 스프링 부트 회원 가입
- spring boot application
- proto3
- spring boot jwt
- intellij
- spring boot app
- 스프링 부트 애플리케이션
- 스프링 데이터 jpa
- 함께 자라기 후기
- leetcode
- 알고리즘
- Spring Boot
- 헥사고날 아키텍처
- QueryDSL
- 스프링부트
- 함께 자라기
- Java
- Spring Boot Tutorial
- @ManyToOne
- Spring Data JPA
- r
- 클린 아키텍처
- Spring Boot JPA
- 스프링 부트
- Linux
- gRPC
- JSON
- 스프링 부트 튜토리얼
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |