스프링 @RequestMapping

Jmnote (토론 | 기여)님의 2016년 5월 26일 (목) 17:32 판 (새 문서: ==개요== ;스프링 @RequestMapping 간단 예제 <source lang='java'> package com.example.bootweb1; import org.springframework.web.bind.annotation.PathVariable; import org.spring...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

개요

스프링 @RequestMapping 간단 예제
package com.example.bootweb1;

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class MainController {
	
	@RequestMapping("/")
	public String home() {
		 return "Hello bootweb!";
	}
	
	@RequestMapping("/greet/{name}")
	public String greet(@PathVariable("name") String name) {
		return "안녕하세요? " + name + "님 반갑습니다.^^";
	}
	
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}