会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
下一页
2020年5月22日
删除数据库中多余的数据
摘要: //新增的所有数据List<Admin> adminList = new ArrayList<>();//数据库中的所有数据List<Admin> adList = adminDao.find(new Admin());//新增数据的所有idList<String> adminIdList = ne
阅读全文
posted @ 2020-05-22 11:31 root-crypto
阅读(307)
评论(0)
推荐(0)
2020年4月26日
git上传本地项目到gitlab
摘要: cd projectgit initgit remote add origin http://gitlab.beijiait.com/group/project.git (删除本地origin:git remote rm origin)git add .git branch master (删除本地
阅读全文
posted @ 2020-04-26 09:16 root-crypto
阅读(226)
评论(0)
推荐(0)
2020年4月13日
域名
摘要: 域名申请 https://www.freenom.com/域名解析 https://www.cloudflare.com/
阅读全文
posted @ 2020-04-13 08:53 root-crypto
阅读(167)
评论(0)
推荐(0)
2020年3月30日
ORA-28000: the account is locked
摘要: sqlplus / as sysdba alter user test identified by 123456 account unlock commit
阅读全文
posted @ 2020-03-30 15:12 root-crypto
阅读(143)
评论(0)
推荐(0)
2020年3月16日
maven配置本地资源仓库后某些jar不能下载
摘要: 原来的settings.xml文件放在D:/.m2目录下导致某些jar不能下载, 需把settings.xml文件放在D:\apache-maven-3.6.1\conf\路径下。 maven配置如下: idea配置如下:
阅读全文
posted @ 2020-03-16 17:45 root-crypto
阅读(418)
评论(0)
推荐(0)
js把秒转换成01:15:25(时:分:秒)格式
摘要: // 将秒转化为时分秒 function formateSeconds(endTime){ let secondTime = parseInt(endTime)// 将传入的秒的值转化为Number let min = 0// 初始化分 let h =0// 初始化小时 let result=''
阅读全文
posted @ 2020-03-16 17:00 root-crypto
阅读(332)
评论(0)
推荐(0)
2020年3月13日
mybatis打印sql日志
摘要: #日志格式 log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %p %c %m%n (%m和%n中间不能有空格,不然mybatis log plugin不能用) log4j.properties文件加入如下配
阅读全文
posted @ 2020-03-13 14:53 root-crypto
阅读(984)
评论(0)
推荐(0)
2020年3月10日
linux
摘要: #查找文件或文件夹find / -name 'TRADEPROMO'#目录find /(查找范围) -name '查找关键字' -type d#文件find /(查找范围) -name 查找关键字 -print #启动 关闭tomcat./startup.sh ./shutdown.sh #查看端口
阅读全文
posted @ 2020-03-10 08:47 root-crypto
阅读(202)
评论(0)
推荐(0)
2020年3月4日
linux tar.gz、tar、bz2、zip 等解压缩、压缩命令
摘要: 压缩 tar –cvf jpg.tar *.jpg // 将目录里所有jpg文件打包成 tar.jpg tar –czf jpg.tar.gz *.jpg // 将目录里所有jpg文件打包成 jpg.tar 后,并且将其用 gzip 压缩,生成一个 gzip 压缩过的包,命名为 jpg.tar.gz
阅读全文
posted @ 2020-03-04 10:32 root-crypto
阅读(283)
评论(0)
推荐(0)
2019年11月29日
linux查看程序端口占用情况
摘要: 查看8080端口占用情况 netstat -apn | grep 8080 结束4258进程 kill -9 4258
阅读全文
posted @ 2019-11-29 14:20 root-crypto
阅读(426)
评论(0)
推荐(0)
上一页
1
2
3
下一页
公告