From a4bd06a61f20051b327a4ee03cd401a00ba1486c Mon Sep 17 00:00:00 2001 From: qibaoguang Date: Fri, 15 May 2015 10:18:34 +0800 Subject: [PATCH] Update 11.3.1. The @RestController and @RequestMapping annotations.md --- ....3.1. The @RestController and @RequestMapping annotations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/II. Getting started/11.3.1. The @RestController and @RequestMapping annotations.md b/II. Getting started/11.3.1. The @RestController and @RequestMapping annotations.md index 32d8b0e..7d93a5d 100644 --- a/II. Getting started/11.3.1. The @RestController and @RequestMapping annotations.md +++ b/II. Getting started/11.3.1. The @RestController and @RequestMapping annotations.md @@ -1,7 +1,7 @@ ### 11.3.1. @RestController和@RequestMapping注解 -我们的`Example`类上使用的第一个注解是`@RestController`。这被称为一个构造型(stereotype)注解。它为阅读代码的人们提供建议。对于Spring,该类扮演了一个特殊角色。在本示例中,我们的类是一个web `@Controller`,所以当处理进来的web请求时,Spring会询问它。 +我们的Example类上使用的第一个注解是`@RestController`。这被称为一个构造型(stereotype)注解。它为阅读代码的人们提供建议。对于Spring,该类扮演了一个特殊角色。在本示例中,我们的类是一个web `@Controller`,所以当处理进来的web请求时,Spring会询问它。 `@RequestMapping`注解提供路由信息。它告诉Spring任何来自"/"路径的HTTP请求都应该被映射到`home`方法。`@RestController`注解告诉Spring以字符串的形式渲染结果,并直接返回给调用者。