- 博客(3)
- 收藏
- 关注
原创 linux 脚本部署项目
source /etc/profile jarname=stincubator-1.0.0.jar currentDir=$(pwd) pid=$(jps |grep $jarname|cut -b 1-5) if [ -n "$pid" ] then echo "java is running, to kill bootstrap pid=$pid" && kill -9 $pid && echo "kill result:
2021-06-04 19:43:10 93
原创 springboot 结合fastdfs
加入依赖 <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> 工具类 public class FastdfsUtil { // trackerUrl 服务器地址 multipa
2021-04-25 14:11:19 162
原创 mysql中on与where的区别
Mysql中on与where的区别on的使用where的使用 on的使用 on的操作时基于前面的表进行操作 where的使用 where的使用时基于前面的表进行查询后生成的临时表进行的数据过滤 例如 select * from a left join b on a.id=b.id where a.id=15 where 的操作是在a表与b表进行关联后的临时表进行操作 可能数据什么都没有 但是 on的操作回保留a表中的数据 ...
2020-09-29 20:23:22 244
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人