26. 회원가입 로직 누락
볼빵빵오춘기
RestApiController.java - 코드 추가package com.cos.jwt.controller;import com.cos.jwt.config.auth.PrincipalDetails;import com.cos.jwt.model.User;import com.cos.jwt.repository.UserRepository;import lombok.RequiredArgsConstructor;import org.springframework.security.core.Authentication;import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;import org.springframework.web.bind.annotation.*..