- 浏览: 4019 次
- 性别:
- 来自: 石家庄
最新评论
文章列表
git创建一个项目用到的关键命令
- 博客分类:
- git
1、先装个git吧。
此处略去1万字。
2、配置git。如果你没配置过
# 检查已有配置信息
$ git config --list
# 配置信息设置
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
$ git config --global ...
使用SpringMVC提交数组时,如果list/array 大小超过256,就会报错。原因是DataBinder 中默认限制了list最大只能增长到256。
private int autoGrowCollectionLimit = DEFAULT_AUTO_GROW_COLLECTION_LIMIT;
解决方案:1)在BaseController添加InitBinder方法,其余继承BaseController
@InitBinder
public void initBinder(WebDataBinder binder) {
binder.setAutoGro ...