[Spring MVC] URI 패턴
URI란? Uniform Resource Identifier 의 줄임말로서 통합 자원 식별자라고 부릅니다. URI 대한 내용은 https://searchmicroservices.techtarget.com/definition/URI-Uniform-Resource-Identifier 참고하세요 package com.example.demo; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.a..