logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

git提交时不用输入用户名密码的方法

在git push时每次都要输入用户名和密码是一件很痛苦的事,其实解决方法很简单,在文件夹(包含隐藏文件夹.git文件夹的)内右键 git bash here在git bash交互环境输入命令git config credential.helper store这里没有--global意思是...

#git
springboot中banner图制作

去这个地址就可以制作。http://patorjk.com/software/taag/#p=display&f=Big&t=187-3693-0319%0A

springboot不注册eureka

常规工程中,使用@EnableEurekaClien注解+yml配置,可以将自己注册到注册中心上去。eureka:client:serviceUrl:defaultZone: http://localhost:8761/eureka/其实,还可以使用@EnableFeignClients注解+yml配置,将自己注册到注册中心上去但是!因为@EnableFeignClients是spring-clo

#spring boot#eureka
mysql定位慢查询

--mysql数据库启动了多少时间show status like 'uptime';show  stauts like 'com_select'  show stauts like 'com_insert' ...类推 update  delete(显示数据库的查询,更新,添加,删除的次数)show [session|global] ...

#mysql
到底了