"스프링 @RequestMapping"의 두 판 사이의 차이

잔글 (봇: 자바 애노테이션(을)를 스프링 애노테이션(으)로 분류 대체함)
31번째 줄: 31번째 줄:
* http://www.baeldung.com/spring-requestmapping
* http://www.baeldung.com/spring-requestmapping


[[분류: 자바 애노테이션]]
[[분류:스프링 애노테이션]]

2017년 3월 15일 (수) 11:06 판

1 개요

스프링 @RequestMapping
@RequestMapping("/")
public String home() {
	 return "Hello bootweb!";
}
@RequestMapping(value = "/hello/world", method = RequestMethod.GET)
@ResponseBody
public String helloWorld() {
    return "Hello, world!";
}
@RequestMapping("/greet/{name}")
public String greet(@PathVariable("name") String name) {
	return "안녕하세요? " + name + "님 반갑습니다.^^";
}

2 같이 보기

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}