项目遇到了这个错误,spring mvc 竟然还有这个漏洞. org.springframework.beans.InvalidPropertyException: Invalid property , Size: at org.springframework.beans.BeanWrapperImpl.getPropertyValue(BeanWrapperImpl.java:) ~[spring-beans-.RELEASE.jar:.RELEASE] at org.springframew…
1.ajax 代码 var ids =new Array(); $.ajax({ type: "POST", url: "/user/downReport", dataType: "html", traditional: true, data:{ downReportArray:ids }, async: true, success: function (data) { if(data.code==200){ console.log("…
又是一个通宵,终于搞明白了. 被WebApi坑得好惨. 之前用各种方法Post上来,有时可以读到结构,但没值,有时直接就是一个Null,有时连方法都没进就跑了,只是来控制器里看了一下…… 最后好友说还是用Json,于是又回去看,最后实验了好久,终于成功了. 首先,用的是 : ApiController 接口,而不是普通的MVCController 其次,方法的命名是这样的: [HttpPost] public Response<string> PostTest([FromBody]JObjec…
案例是给一个用户赋予多个权限,多个权限用其对应的主键 id 为参数,组成了 一个id数组,传给springMVC,然后springMVC传给mybatis,然后mybatis批量插入.其实类似的场景还有批量删除多个,也是类似的. 1. 前台页面 <thead><tr><th>权限选择</th><th>name</th><th>permission</th></tr></thead> &l…
1.使用curl提交数据时中文乱码解决: <?php $testJSON=array('name'=>'中文字符串','value'=>'test'); foreach ( $testJSON as $key => $value ) { $testJSON[$key] = urlencode ( $value ); } echo urldecode ( json_encode ( $testJSON ) ); ?> 注意:json_decode($string,true),第…
当用$.ajax()向后台提交参数时,如果参数中数组的话一般在后台会用List,或Integer[] 等数组对象进行接收. 比如: $.ajax({   type: "POST",   url: url,   data:{ gender:[0,1] },   dataType: "json",   async:false  }); 这里有个查询性别的gender数组. 用火狐的firebug查看post数据的时候,如果jquery版本过高会发现gender按以下类型…
四种常见的 POST 提交数据方式 我们知道,HTTP 协议是以 ASCII 码传输,建立在 TCP/IP 协议之上的应用层规范.规范把 HTTP 请求分为三个部分:状态行.请求头.消息主体.类似于下面这样: <method> <request-url> <version> <headers> <entity-body></entity-body></headers></version></request…
最近项目部署到新环境tomcat+mysql,想看看项目部署成功没有,就用soupui调对应接口开测试,soupui使用比较简单,给上接口地址,入参xml报文,把入参的media Type设置为application/xml 点击调用就可以了.但是点击调用返回值为空.对,就是啥都没返回.XML,JSON,HTML这些选项都是空的.也不报错.我就郁闷了.后来问组里高手才知道post请求的入参数据格式不正确,soupui不是万能的测试工具.这算是掉坑了 错误原因就是不知道post请求服务的数据格式是…
在像github提交代码时,报permission denied publickey. 查找了一下,可能是因为github的key失效了. 按照以下步骤,重新生成key. ssh-keygen 一路默认下去. 会在home目录的.ssh文件夹下生成两个文件: id_rsa 和id_rsa.pub id_rsa是私钥,需要保存在本地的.id_rsa.pub是公钥,需要上传到github. 在github的右上角edit your profile 里找到ssh key,然后add ssh key,把…
第一步:配置 git.exe File -> Default Settings -> Version Control -> Git -> Path go Git executable: D:\Program Files\Git\bin\git.exe 第二步:clone 项目 VCS -> Checkout from Version Control -> Git -> Clone Repository -> 填写项目的git信息,如 Git Reposito…