
Spring Security JWT 6 : 회원가입 로직 구현
·
카테고리 없음
회원가입 로직JoinDTOJoinDTOpackage com.example.springjwt.dto;import lombok.Getter;import lombok.Setter;@Setter@Getterpublic class JoinDTO { private String username; private String password;}JoinControllerjoinControllerpackage com.example.springjwt.controller;import com.example.springjwt.dto.JoinDTO;import com.example.springjwt.service.JoinService;import org.springframework.stereotype.Controller;..