@RequestMapping:将请求和处理请求的方法关联起来,建立映射关系,SpringMVC接收到指定的请求,就会找到在映射关系中对应的控制器方法来处理这个请求。
一. @RequestMapping注解的位置@RequestMapping标识一个类:设置映射请求的请求路径的初始信息
@RequestMapping标识一个方法:设置映射请求请求路径的具体信息
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class RequestMappingController {
@RequestMapping("/testRequestMapping") //此时所映射的请求路径为:/testRequestMapping
public String goToTest(){
return "test2";
}
}
Title
index页面
访问test2.html页面
在类上添加@RequestMapping
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/hello")
public class RequestMappingController {
@RequestMapping("/testRequestMapping") //此时所映射的请求路径为:/hello/testRequestMapping
public String goToTest(){
return "test2";
}
}
Title
index页面
访问test2.html页面
二. @RequestMapping注解的属性
1. value
@RequestMapping注解的value属性必须设置,其通过请求的请求地址匹配请求映射
@RequestMapping注解的value属性是一个字符串类型的数组,表示该请求映射能够匹配多个请求地址所对应的请求
当@RequestMapping注解只有value属性且value属性只有一个值,可以省去value,如上面的示例
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class RequestMappingController {
@RequestMapping(value={"/testRequestMapping","/testRequest"}) //此时所映射的请求路径为:/testRequestMapping或/testRequest,只要匹配其中一个就可以
public String goToTest(){
return "test2";
}
}
Title
index页面
访问test2.html页面
访问test2.html页面
以上两个链接都可以访问到test2.html页面
2. method@RequestMapping注解的method属性通过请求的请求方式(get或post)匹配请求映射,如果不设置method属性,则两个请求方式都可以
@RequestMapping注解的method属性是一个RequestMethod类型的数组,表示该请求映射能够匹配多种请求方式的请求
若当前请求的请求地址满足请求映射的value属性,但是请求方式不满足method属性,则浏览器报错405
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class RequestMappingController {
@RequestMapping(
value={"/testRequestMapping","/testRequest"},
method = {RequestMethod.POST}) //此时只有POST请求可以
public String goToTest(){
return "test2";
}
}
Title
index页面
访问test2.html页面
访问test2.html页面
使用的注解方式:
处理get请求的映射–>@GetMapping
处理post请求的映射–>@PostMapping
处理put请求的映射–>@PutMapping
处理delete请求的映射–>@DeleteMapping
常用的请求方式有get,post,put,delete
但是目前浏览器只支持get和post,若在form表单提交时,为method设置了其他请求方式的字符串(put或delete),则按照默认的请求方式get处理
若要发送put和delete请求,则需要通过spring提供的过滤器HiddenHttpMethodFilter
使用注解:
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
@Controller
public class RequestMappingController {
@PostMapping(value={"/testRequestMapping","/testRequest"})
public String goToTest(){
return "test2";
}
}
3.params(了解)
@RequestMapping注解的params属性通过请求的请求参数匹配请求映射
@RequestMapping注解的params属性是一个字符串类型的数组,可以通过四种表达式设置请求参数和请求映射的匹配关系
“param”:要求请求映射所匹配的请求必须携带param请求参数
“!param”:要求请求映射所匹配的请求必须不能携带param请求参数
“param=value”:要求请求映射所匹配的请求必须携带param请求参数且param=value
“param!=value”:要求请求映射所匹配的请求必须携带param请求参数但是param!=value
params里的属性必须同时满足
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class RequestMappingController {
@RequestMapping(
value={"/testRequestMapping","/testRequest"},
method = {RequestMethod.GET,RequestMethod.POST},
params = {"username","password!=123"})
public String goToTest(){
return "test2";
}
}
Title
index页面
访问test2.html页面
4.headers(了解)
@RequestMapping注解的headers属性通过请求的请求头信息匹配请求映射
@RequestMapping注解的headers属性是一个字符串类型的数组,可以通过四种表达式设置请求头信息和请求映射的匹配关系
“header”:要求请求映射所匹配的请求必须携带header请求头信息
“!header”:要求请求映射所匹配的请求必须不能携带header请求头信息
“header=value”:要求请求映射所匹配的请求必须携带header请求头信息且header=value
“header!=value”:要求请求映射所匹配的请求必须携带header请求头信息且header!=value
若当前请求满足@RequestMapping注解的value和method属性,但是不满足headers属性,此时页面显示404错误
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class RequestMappingController {
@RequestMapping(
value={"/testRequestMapping","/testRequest"},
method = {RequestMethod.GET,RequestMethod.POST},
params = {"username","password!=123"},
headers = {"Host=localhost:8080"}
)
public String goToTest(){
return "test2";
}
}
Title
index页面
访问test2.html页面
三、SpringMVC支持ant风格的路径
?:表示任意的单个字符
*:表示任意的0个或多个字符
**:表示任意的一层或多层目录
注意:在使用**时,只能使用/**/xxx的方式
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class RequestMappingController {
@RequestMapping("/t?/testRequest")
public String goToTest(){
return "test2";
}
}
Title
index页面
访问test2.html页面
四、SpringMVC支持路径中的占位符
原始方式:/deleteUser?id=1
restful方式:/deleteUser/1
SpringMVC路径中的占位符常用于restful风格中,当请求路径中将某些数据通过路径的方式传输到服务器中,就可以在相应的@RequestMapping注解的value属性中通过占位符{xxx}表示传输的数据,再通过@PathVariable注解,将占位符所表示的数据赋值给控制器方法的形参
package com.mvc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class RequestMappingController {
@RequestMapping("/testRequest/{id}/{username}")
public String goToTest(@PathVariable("id") Integer id, @PathVariable("username") String username){ //将占位符{id}和{username}的值赋值给形参
System.out.println("id = " + id + ", username = " + username); //id = 1, username = admin
return "test2";
}
}
Title
index页面
访问test2.html页面
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)