📌 inser Test 작성하기 1. DummyControllerTest 클래스 생성 2. 클래스 작성 package com.cos.blog.test; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RestController; @RestController //페이지로 응답할게 아니라 데이터 응답시 public class DummyControllerTest { //http://localhost8081/blog/dummy/join(요청) --> request //http의 body에 username, password, email데이터를 가지고 요청 @PostMapp..