Spring 시작하기 @RestControllerpublic class HelloController{ @GetMapping("/hello") public String hello(String name){ return "Hello " + name; }} Test:localhost:8080/hello?name=Spring 으로 테스트가 가능하다. 테스팅 방법1. 웹 브라우저 개발자 도구2. curl3. HTTPie4. Postman5. JUnit Teset6. Another 웹어플리케이션의 흐름 1. web client가 web request를 web container가 componet를 찾아서 다시 return한다. *client와 container 사이에는 request와 resp..