插件备份
集合 常见的集合有哪些? Java集合类主要由两个根接口Collection和Map派生出来的 Collection派生出了三个子接口:List、
pom文件下添加配置, 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 <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>3.1.12</version> <configuration> <excludeFilterFile>ignore.xml</excludeFilterFile> </configuration> <dependencies> <!-- overwrite dependency on spotbugs if you want to specify the version of spotbugs --> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>4.0.0</version> </dependency> </dependencies> <executions> <execution> <id>spotbugs</id> <phase>verify</phase>
官方教程 配置 安装node.js 安装apidoc 1 npm install apidoc -g 在项目根目录下新建apidoc.json文件 1 2 3 4 5 6 7 { "name": "wxshop", "version": "1.0.0", "description": "小微
查看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 语句的结果集的可视化的表。视图包含行和列,就像一个真实的表。 视图是一种不存在的虚拟表: 类似表但是不是表。 类似