会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
uzxin
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
下一页
2019年12月24日
windows解除端口占用
摘要: netstat -aon|findstr "8080" 查看进程号 tasklist|findstr "4224" 查看是哪个傻逼程序占用 taskkill -F -PID 4224 干掉他
阅读全文
posted @ 2019-12-24 09:22 uzxin
阅读(170)
评论(0)
推荐(0)
2019年12月17日
mysql5.7修改root密码
摘要: use mysql; update mysql.user set authentication_string=password('123456') where user='root'; flush privileges;
阅读全文
posted @ 2019-12-17 10:26 uzxin
阅读(668)
评论(0)
推荐(0)
2019年12月16日
docker常用命令
摘要: 查看镜像 docker images -a 删除镜像 docker rmi id 查看容器 docker ps 查看所有容器 docker ps -a 查看最新创建的容器 docker ps -l 查看最新创建的n个容器 docker ps -n=XXX 创建容器 docker create ngi
阅读全文
posted @ 2019-12-16 20:21 uzxin
阅读(165)
评论(0)
推荐(0)
IDEA导入maven项目不自动识别
摘要: 解决办法: 选中module的pom.xml,右键,选择" add as maven project",即可刷新为maven项目
阅读全文
posted @ 2019-12-16 11:18 uzxin
阅读(735)
评论(0)
推荐(1)
泛型和Object的区别?
摘要: 泛型声明 public <T> T doSomeThing(T t){ return t; } Object声明 public Object doSomeThing(Object obj){ return obj; } 泛型引用 String result = doSomeThing("参数是Str
阅读全文
posted @ 2019-12-16 08:50 uzxin
阅读(1028)
评论(1)
推荐(0)
2019年12月13日
无法访问Eureka主页
摘要: spring: application: name: 90foodmall-eureka server: port: 8000 eureka: client: #是否将自己注册到Eureka Server,默认为true register-with-eureka: false #是否从Eureka
阅读全文
posted @ 2019-12-13 15:18 uzxin
阅读(1487)
评论(0)
推荐(0)
2019年12月11日
postman使用get请求的url地址传参中文乱码问题
摘要: 编码之后
阅读全文
posted @ 2019-12-11 11:42 uzxin
阅读(1058)
评论(0)
推荐(0)
2019年12月10日
springboot devtool热部署的一个大坑
摘要: spring.devtools.restart.poll-interval=3000ms spring.devtools.restart.quiet-period=2999ms 别问我为什么,问就是一个立果子
阅读全文
posted @ 2019-12-10 20:22 uzxin
阅读(597)
评论(0)
推荐(0)
2019年12月9日
map中entrySet和KeySet的区别
摘要:
阅读全文
posted @ 2019-12-09 16:13 uzxin
阅读(659)
评论(0)
推荐(0)
2019年12月6日
springBoot整合mybatis-plus关闭自动转换小驼峰命名规则
摘要: 增加配置信息 mybatis-plus: configuration: map-underscore-to-camel-case: false
阅读全文
posted @ 2019-12-06 17:43 uzxin
阅读(5788)
评论(0)
推荐(1)
上一页
1
···
3
4
5
6
7
8
9
下一页
公告