9.@RequestMapping中的method(请求方法映射限定),请求方式POST、GET

之前我们是这样配置的

<bean name="/test1" class="com.briup.web.controller.Test1Controller">
	<!-- 注入线程安全机制,配置为true则可以使用线程安全访问 -->
	<property name="synchronizeOnSession" value="true"></property>
	<property name="supportedMethods" value="POST,GET"></property>
	<property name="requireSession" value="false"></property>
</bean>  

应用场景:
在注册界面/register.jsp中,

新建RequestMethodController.java

//请求方法的映射限定
@RequestMapping("/request_method")
@Controller
public class RequestMethodController {
	@RequestMapping(value="/test1",method={RequestMethod.POST,RequestMethod.GET})  
	public String test1() {
		System.out.println("RequestMethodController test1()...");
		return "test";//跳转到test.jsp
	}
	@RequestMapping(value="/register",method={RequestMethod.GET})  //默认请求方式是get
	public String test2() {
		//采用get提交,跳转注册页面
		System.out.println("RequestMethodController test2()...");
		return "test";//跳转到test.jsp
	}
	@RequestMapping(value="/register",method={RequestMethod.POST})  //请求方式post
	public String test3() {
		//采用post提交,提交注册页面
		System.out.println("RequestMethodController test3()...");
		return "test";//跳转到test.jsp
	}
}

在这里插入图片描述
默认是GET请求方式,,所以走test2()

在这里插入图片描述

在这里插入图片描述
但是用浏览器中自带的模拟POST发送,就会出现下面的结果,,会走test3()
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值