정적 컨텐츠

Untitled

MVC와 템플릿 엔진

Untitled

API

@ResponseBody 문자 반환

@Controller
public class HelloController {

	@GetMapping("hello-string")
	@ResponseBody
	public String helloString(@RequestParam("name") String name) {
	return "hello " + name;
	}
}

Untitled