스프링 @RequestMapping

Jmnote (토론 | 기여)님의 2016년 6월 14일 (화) 08:52 판 (→‎같이 보기)

1 개요

스프링 @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 + "님 반갑습니다.^^";
	}
	
}

2 같이 보기

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