markdown [spring annotation] #spring
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown [spring annotation] #spring相关的知识,希望对你有一定的参考价值。
### 传JSON字符串+@RequestBody接收
- 前端
```
function icheckDelete(url){
var parms = {
list : array //这是个数组
};
$.ajax({
dataType: "JSON",
contentType:'application/json;charset=UTF-8',//关键是要加上这行
traditional:true,//这使json格式的字符不会被转码
data: JSON.stringify(parms),
type: "DELETE",
timeout: 20000,
url: url,
success : function () {
alert("删除成功!");
},
error : function (data){
alert(data.responseText);
}
});
}
```
- 后端
```
Controller:
@RequestMapping(value = "deleteList", method = RequestMethod.DELETE)
@ResponseBody
public String delete(@RequestBody DeleteListRequest request) throws WebTransException{
/* 逻辑代码 */
return "success";
}
```
以上是关于markdown [spring annotation] #spring的主要内容,如果未能解决你的问题,请参考以下文章
创建spring自定义注解进行自动装配
Spring oauth2 InsufficientAuthenticationException
Spring启动流程(一)
Spring Boot 获取 bean 的 3 种方式!还有谁不会??
Spring LDAP 不适用于 LDAP 模板
Spring AOP实现 Bean字段合法性校验