上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页
摘要: 报错信息 Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row 阅读全文
posted @ 2019-09-23 09:52 Sea_wxx 阅读(2008) 评论(0) 推荐(0) 编辑
摘要: vue单页面刷新 只需修改nginx配置文件 server { listen 80; listen [::]:80; server_name wxx.kingsuper.net; access_log off; index index.html index.htm index.jsp; root / 阅读全文
posted @ 2019-08-08 23:12 Sea_wxx 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 使用了多个定时任务,会出现执行多次的情况 在springboot已经集成了quartz框架 只需在配置文件中加上 该配置就ok了 #解决定时任务执行多次的问题org.quartz.jobStore.acquireTriggersWithinLock=true 阅读全文
posted @ 2019-08-02 14:34 Sea_wxx 阅读(2552) 评论(0) 推荐(0) 编辑
摘要: data.map(x => {return x.dateStr}); dateStr 是json的属性 阅读全文
posted @ 2019-07-22 18:29 Sea_wxx 阅读(1600) 评论(0) 推荐(0) 编辑
摘要: // 去除收尾指定字符String.prototype.trim = function (char, type) { if (char) { if (type == 'left') { return this.replace(new RegExp('^\\'+char+'+', 'g'), ''); } else if (type =... 阅读全文
posted @ 2019-07-16 10:36 Sea_wxx 阅读(553) 评论(0) 推荐(0) 编辑
摘要: my.ini 内容如下: 设置好重启mysql服务 阅读全文
posted @ 2019-06-04 16:12 Sea_wxx 阅读(880) 评论(0) 推荐(0) 编辑
摘要: 1.拦截器中的代码 2.ajax请求 加入 complete 处理 阅读全文
posted @ 2019-05-30 13:46 Sea_wxx 阅读(1933) 评论(0) 推荐(0) 编辑
摘要: @RequestMapping(value = "down",method = RequestMethod.GET) @ResponseBody public void down(HttpServletRequest request, HttpServletResponse response) throws IOException { //获取根目录 ... 阅读全文
posted @ 2019-05-29 13:50 Sea_wxx 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 启动项目java -jar /目录 &例如 nohup java -jar /data/wwwroot/springboot.kingsuper.net/demo.jar & 重新启动项目,要先将之前的端口杀死查询端口netstat -tunlp 杀死端口 kill -9 端口例如 kill -9 阅读全文
posted @ 2019-05-28 15:37 Sea_wxx 阅读(735) 评论(0) 推荐(0) 编辑
摘要: <if test="isChoiceness != null and isChoiceness != -1"> AND sa.is_choiceness = #{isChoiceness}</if> isChoiceness 是一个Integer 类型的值,所以只能判断是否是null 和是否是 数字 阅读全文
posted @ 2019-05-28 11:17 Sea_wxx 阅读(418) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页