/img/系统图片/avatar.png

hahaen

Git快捷配置

查看git快捷配置 1 cat ~/.bashrc 修改git快捷配置 1 vi ~/.bashrc 例子 1 2 3 4 5 6 7 8 alias ga="git add" alias gm="git commit -m" alias gc="git commit -v" alias gl="git pull" alias gp="git push" alias gco="git checkout" alias gst="git status -sb" alias glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --

Sql视图

什么是视图? 在 SQL 中,视图是基于 SQL 语句的结果集的可视化的表。视图包含行和列,就像一个真实的表。 视图是一种不存在的虚拟表: 类似表但是不是表。 类似

Spring

Spring、SpringMVC、SpringBoot区别是什么? SpringBoot 到 SpringMVC 的改进是: 自动化配置: SpringMVC通过xml配置,手动指定。S

电商

高并发三种处理方式 系统拆分 缓存 MQ 做项目的时候,如果我们有个变量,我们需要在上下文一直传递下去,那这个时候怎么去弄呢? 可以用Threadloc

Jacoco使用教程

在pom.xml添加配置 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.5</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> </execution>