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

40번째 줄: 40번째 줄:


==같이 보기==
==같이 보기==
*[[스프링 @RestController]]
*[[스프링 애노테이션]]
*[[스프링 애노테이션]]
*[[스프링부트 프로젝트 bootweb1]]
*[[스프링부트 프로젝트 bootweb1]]

2017년 3월 15일 (수) 10:56 판

1 개요

스프링 @RequestMapping
@RequestMapping("/")
public String home() {
	 return "Hello bootweb!";
}
@RequestMapping("/greet/{name}")
public String greet(@PathVariable("name") String name) {
	return "안녕하세요? " + name + "님 반갑습니다.^^";
}

2 예제

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

3 같이 보기

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