上一页 1 ··· 3 4 5 6 7 8 9 下一页
2019年8月22日
摘要: 在spring boot配置文件中application.yml,添加以下配置 1.使用-server模式 设置JVM使用server模式。64位JDK默认启动该模式 2.指定堆参数 这个根据服务器的内存大小,来设置堆参数。 -Xms :设置Java堆栈的初始化大小 -Xmx :设置最大的java堆 阅读全文
posted @ 2019-08-22 14:20 sunnyBalckCat 阅读(188) 评论(0) 推荐(0) 编辑
2019年8月8日
摘要: linux命令整理: 查看进程pid ps aux |grep $(pwd) ps -ef|grep `pwd` ( ` 不是 单引号 ,是引用) telnet telnet 10.100.8.231 6379 (ip port) curl http ping http (ip、http) #tel 阅读全文
posted @ 2019-08-08 19:35 sunnyBalckCat 阅读(407) 评论(0) 推荐(0) 编辑
2019年7月31日
摘要: 下载指定日期区间的日志 1、推荐用xshell (1)登录服务器: 工具栏选择:文件 ——> 日志——>启动——>选择日志保存的路径 (2)找到指定日志文件的位置 cd /app/build/logs/执行如下命令 sed -n '/2019-05-08 09:21:23/,/2019-05-08 阅读全文
posted @ 2019-07-31 19:17 sunnyBalckCat 阅读(359) 评论(0) 推荐(0) 编辑
摘要: 服务器环境搭建 一、安装jdk#1.配置环境变量(系统文件.bash_profile)文件内容 jboss账号 # .bash_profile# Get the aliases and functionsif [ -f ~/.bashrc ]; then . ~/.bashrcfi # User s 阅读全文
posted @ 2019-07-31 19:06 sunnyBalckCat 阅读(444) 评论(0) 推荐(0) 编辑
2019年6月25日
摘要: 1、git - > show history,选中回滚的指定版本,右击copy revision number 粘出版本号 2、git -> reset hard 出险新页面之后,选中hard ,to commit选项中黏贴上面复制的版本号,点击reset回滚 3、git -> push分支到环境, 阅读全文
posted @ 2019-06-25 15:57 sunnyBalckCat 阅读(2549) 评论(0) 推荐(0) 编辑
2019年6月4日
该文被密码保护。 阅读全文
posted @ 2019-06-04 09:32 sunnyBalckCat 阅读(1) 评论(0) 推荐(0) 编辑
2019年5月30日
摘要: 实体: package com.test;import com.fasterxml.jackson.annotation.JsonProperty;import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement 阅读全文
posted @ 2019-05-30 20:38 sunnyBalckCat 阅读(289) 评论(0) 推荐(0) 编辑
摘要: List<Integer> numbers =Arrays.asList(6,2,1,4,9); System.out.println(numbers);//[6, 2, 1, 4, 9] numbers.sort(Comparator.naturalOrder()); System.out.pri 阅读全文
posted @ 2019-05-30 09:32 sunnyBalckCat 阅读(1824) 评论(0) 推荐(0) 编辑
2019年5月10日
摘要: git checkout 分支git stash(隐藏本地新增代码),切换分支本地有代码未提交会报错,执行此命令,暂时隐藏新增代码,切回来之后执行下面命令则可以继续开发git stash pop(恢复本地新增代码) git config --global 参数 所有的Git仓库都会使用这个配置 例如 阅读全文
posted @ 2019-05-10 09:17 sunnyBalckCat 阅读(179) 评论(0) 推荐(1) 编辑
2019年4月24日
摘要: 1、校验延迟:点击进入页面不希望校验必填字段this.$nextTick(() => { this.$refs.formRules.clearValidate() })2、$on $emit $off RightEmit.$on("click-btn", this.clickBtn); //监听事件 阅读全文
posted @ 2019-04-24 16:00 sunnyBalckCat 阅读(262) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页