摘要:
easyquery项目地址 前后端查询约定: 字段[操作符]=值 (字段对应数据库表字段的lowerCamel) 等于(eq) url:name[eq]=你好 sql: where name = "你好" 大于(gt) url: age[gt]=10 sql: where age > 10 大于等于 阅读全文
摘要:
服务器环境为Ubuntu 16.04.2 LTS 1.卸载旧版本docker 2.安装docker,使用脚本自动安装 3.启动docker 4.安装docker-compose 5.安装compose bash补全命令 6.如果需要卸载docker-compose,删除可执行文件即可 7.配置doc 阅读全文
摘要:
just had a try and it worked well. Could you please check "File Types" in IDEA? Open "Settings" -> type "file types" to search "File Types" setting -> 阅读全文
摘要:
已确保idea工具默认设置都是UTF-8格式: 然后在配置类上,指定编码: @PropertySource(value = "classpath:short_message.properties",encoding = "UTF-8") @Data @Component @PropertySourc 阅读全文
摘要:
在微信客户端打开这个网址: http://debugx5.qq.com http://debugx5.qq.com 显示X5调试页面: 清除缓存即可。 阅读全文
摘要:
在浏览器进行微信h5支付时出现: 在https://pay.weixin.qq.com/wiki/doc/api/H5.php?chapter=15_4 官网可以看到可能出现这个问题的原因: 说的很清楚了,是开发者拿到mwebUrl直接在浏览器上访问了,这里需要跳转。 java中我使用重定向进行跳转 阅读全文
摘要:
//监听数据表格工具条 table.on('tool(contentList)', function(obj){ //注:tool是工具条事件名,test是table原始容器的属性 lay-filter="对应的值" var data = obj.data //获得当前行数据 ,layEvent = 阅读全文
摘要:
数据表格字段: {field: 'novelId', title: '小说ID',width:100,templet: '<div><a href="javascript:;" _href="/contentManage/content-chapters.html" novelName="{{d.n 阅读全文
摘要:
excel表格中有许多数据,需要将数据导入数据库中,又不能一个一个手工录入,可以生成SQL,来批量操作。 1.首先在第二行的H列,插入函数:=CONCATENATE("INSERT INTO `book` (`bookid`, `title`, `volume`, `author`, `urlpdf 阅读全文
摘要:
在执行git pull origin master时出现: fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure yo 阅读全文