Request method 'GET' not supported

HTTP Status 405 – Method Not Allowed


Type Status Report

Message Request method 'GET' not supported

Description The method received in the request-line is known by the origin server but not supported by the target resource.


Apache Tomcat/9.0.0.M22


百度了很多方法,CSDN上也有很多相关解决,但是我这个问题的原因比较幼稚。

MySQL+ibaits+spring

Controller:
	@SuppressWarnings("unchecked")
	@RequestMapping(value = "/student/exam-submit", method = RequestMethod.POST)
	@ResponseBody public Message finishExam(@RequestBody ExamFinishParam efp) {
	}



Bean:
@XmlRootElement
public class ExamFinishParam implements Serializable {
	private static final long serialVersionUID = 4265690784518580278L;
	private int exam_history_id;
	private int duration;
	private int userid;
}



js:
var request = $.ajax({
			headers : {
				'Accept' : 'application/json',
				'Content-Type' : 'application/json; charset=utf-8'
			},
			type : "POST",
			url : "student/exam-submit",
			data : JSON.stringify(data)
		});


问题出在BEAN中主键ID类型是int。后来做的修改数据库主键改为了bigint,JAVA中的int存放不下,后台也没有报错,将ID类型改为long即可。

即提交的表单字段要与bean的类型完全对应,否则请求并不能完全对应识别。


解决办法是这样,具体原理是我自己的理解,还请大佬们指正。


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值