会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Sea_wxx
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
3
4
5
6
7
8
9
10
11
···
14
下一页
2019年9月25日
springboot jar包部署
摘要: 该示例使用的是oneinstack环境和阿里云服务器 1.将项目打包成jar 2.端口指定不在application.properties文件中指定,而在运行命令中指定 注意:指定的端口必须在防火墙中开启(云防火墙(比如阿里云和腾讯云)和 linux(安装的系统)) 在入方向添加开放端口 linux
阅读全文
posted @ 2019-09-25 18:30 Sea_wxx
阅读(309)
评论(0)
推荐(0)
2019年9月23日
mysql报错 Row size too large (> 8126)
摘要: 报错信息 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
阅读(2079)
评论(0)
推荐(0)
2019年8月8日
oneinstack 部署vue项目
摘要: 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
阅读(377)
评论(0)
推荐(0)
2019年8月2日
springboot 2.x 使用定时任务执行多次问题
摘要: 使用了多个定时任务,会出现执行多次的情况 在springboot已经集成了quartz框架 只需在配置文件中加上 该配置就ok了 #解决定时任务执行多次的问题org.quartz.jobStore.acquireTriggersWithinLock=true
阅读全文
posted @ 2019-08-02 14:34 Sea_wxx
阅读(2586)
评论(0)
推荐(0)
2019年7月22日
从json数组中获取某一属性的集合
摘要: data.map(x => {return x.dateStr}); dateStr 是json的属性
阅读全文
posted @ 2019-07-22 18:29 Sea_wxx
阅读(1611)
评论(0)
推荐(0)
2019年7月16日
js 去除收尾指定字符
摘要: // 去除收尾指定字符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
阅读(570)
评论(0)
推荐(0)
2019年6月4日
window 修改字符集为utf8
摘要: my.ini 内容如下: 设置好重启mysql服务
阅读全文
posted @ 2019-06-04 16:12 Sea_wxx
阅读(900)
评论(0)
推荐(0)
2019年5月30日
拦截器拦截ajax请求不跳转页面问题
摘要: 1.拦截器中的代码 2.ajax请求 加入 complete 处理
阅读全文
posted @ 2019-05-30 13:46 Sea_wxx
阅读(1954)
评论(0)
推荐(0)
2019年5月29日
java 下载
摘要: @RequestMapping(value = "down",method = RequestMethod.GET) @ResponseBody public void down(HttpServletRequest request, HttpServletResponse response) throws IOException { //获取根目录 ...
阅读全文
posted @ 2019-05-29 13:50 Sea_wxx
阅读(168)
评论(0)
推荐(0)
2019年5月28日
springboot 运行相关命令
摘要: 启动项目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
阅读(747)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
···
14
下一页
公告