git 用户修改问题

摘要: 获取当前登陆用户: git config user.name //获取当前登录的用户 git config user.email 获取当前登录用户的邮箱 修改登陆用户: git config --global user.name 'userName' 修改登陆账号,userName为你的git账号 阅读全文
posted @ 2021-04-07 19:25 pokeTwo 阅读(35) 评论(0) 推荐(0) 编辑

git 删除远端分支

摘要: 查看当前所有分支 git branch -a 删除远端分支 git push origin --delete panzuwei-master-patch-70353 阅读全文
posted @ 2021-04-07 19:18 pokeTwo 阅读(75) 评论(0) 推荐(0) 编辑

spring boot 发送http 请求问题

摘要: //提交审核后给审核人发送邮件提醒信息 JSONObject json=new JSONObject(); json.put("fromAddr",TsConfigHelper.getProperty(EMAILUSER)); Map<String,Object> map=new HashMap<> 阅读全文
posted @ 2020-10-22 18:15 pokeTwo 阅读(205) 评论(0) 推荐(0) 编辑

oracle 排序 row_num 问题

摘要: Row_Number() OVER (ORDER BY T1.UPDATE_TIME DESC,T1.ROW_NUM ASC) as ROW_NUM, 阅读全文
posted @ 2020-10-22 18:09 pokeTwo 阅读(163) 评论(0) 推荐(0) 编辑

SpringBoot单元测试样例

摘要: package com.example.demo; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; impor 阅读全文
posted @ 2020-10-14 16:38 pokeTwo 阅读(144) 评论(0) 推荐(0) 编辑

visual GC 下载教程

摘要: 载自 https://blog.csdn.net/shuai825644975/article/details/78970371 1.访问 visualvm新访问地址:https://visualvm.github.io/index.html 2.点击上方的Plugins 3.找到 Plugins 阅读全文
posted @ 2020-09-08 17:04 pokeTwo 阅读(582) 评论(0) 推荐(0) 编辑

'1.6' is not a valid JRE home

摘要: 阅读全文
posted @ 2020-09-03 16:30 pokeTwo 阅读(966) 评论(0) 推荐(0) 编辑

linux查看当前文件夹的大小

摘要: linux查看当前文件夹的大小 1、(方法一)ls -lht会列出当前目录下每个文件的大小,同时也会给出当前目录下所有文件大小总和 【查看谬个文件的大小,】 2、(方法二)du -sh *也会列出当前文件夹下所有文件对应的大小 【把*替换为具体的文件名,会给出具体文件的大小】 阅读全文
posted @ 2020-08-11 17:31 pokeTwo 阅读(7999) 评论(0) 推荐(0) 编辑

springBoot部署

摘要: linux下后台启动springboot项目 转载自:https://www.cnblogs.com/sueyyyy/p/9958836.html linux下后台启动springboot项目 我们知道启动springboot的项目有三种方式: 运行主方法启动 使用命令 mvn spring-boo 阅读全文
posted @ 2020-07-30 17:17 pokeTwo 阅读(299) 评论(0) 推荐(0) 编辑

springBoot linux启动指定端口

摘要: java -jar bootsample. jar -- server.port=9000 阅读全文
posted @ 2020-07-29 17:26 pokeTwo 阅读(1270) 评论(0) 推荐(0) 编辑