쿼리스트링, form-data, x-www-form-urlencoded 메시지 바디가 텍스트 형태면 받지 못함! 위의 3가지 데이터는 @RequestParam 어노테이션으로 데이터를 받을 수 있다 package hello.springmvc.basic.requestmapping;import lombok.extern.slf4j.Slf4j;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.an..