스프링에서 Controller를 통해 RequestMapping을 할 때
파라미터는 다음과 같이 받아올 수 있다!(@RequestParam을 이용해서)
매개 변수에 어노테이션이 들어가는 형태인데
스프링이 얼마나 위대한(?) 프레임워크인지 다시 한 번 느낄 수 있다!
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
public class TestController {
@RequestMapping(value = "/test", method = RequestMethod.GET)
public String home(Model model, @RequestParam String param1) {
System.out.println(param1); // param1로 던진 값을 받아올 수 있다.(/test?param1=abcd)
return "test";
}
}
'IT노트(구) > Java' 카테고리의 다른 글
자바에서 배열 길이 구하는 방법(length 이용) (0) | 2015.12.28 |
---|---|
자바에서 String 문자열 길이 구하는 방법 (0) | 2015.12.28 |
자바 Filter 사용 방법 및 예제 (0) | 2015.12.14 |
ServletContextListener로 데몬 구동하는 초간단 예제 (0) | 2015.12.14 |
자바 http url 호출 예제(HttpURLConnection 이용) (0) | 2015.12.09 |