文章
76
标签
19
分类
12
首页
时间轴
标签
分类
留言板
关于
张晓风的博客
git commit 代码提交规范
首页
时间轴
标签
分类
留言板
关于
git commit 代码提交规范
发表于
2024-05-30
|
更新于
2024-05-30
|
开发相关
|
总字数:
14
|
阅读时长:
1分钟
|
浏览量:
TODO:暂时留个坑,待整理好思路再写
文章作者:
张晓风
文章链接:
https://zhangyuliang1994.github.io/%E5%BC%80%E5%8F%91%E7%9B%B8%E5%85%B3-git-commit-%E4%BB%A3%E7%A0%81%E6%8F%90%E4%BA%A4%E8%A7%84%E8%8C%83/
版权声明:
本博客所有文章除特别声明外,均采用
CC BY-NC-SA 4.0
许可协议。转载请注明来源
张晓风的博客
!
git
上一篇
smart-doc使用注释生成接口文档
一、写在前面程序员最讨厌的事情就是写文档,尤其是接口文档。之前也用过swagger,但是感觉每个类、方法、字段都要加注解,实在是太麻烦了,最近发现smart-doc很好的解决了这个问题,因为它是无侵入式的,只要正常写Java注释,它就能帮你生成各种格式的接口文档。官方文档地址:https://smart-doc-group.github.io/#/zh-cn/ 二、maven插件配置12345678910111213141516<plugin> <groupId>com.github.shalousun</groupId> <artifactId>smart-doc-maven-plugin</artifactId> <version>2.6.0</version> <executions> <execution> <phase>compile</phase> ...
下一篇
使用liquibase管理数据库变更
项目更新或升级时,总会因为缺失数据库字段导致部分功能无法正常使用。liquibase可以很好的解决这个问题。网上对于其使用有很多例子,但我更喜欢的还是根据sql文件来记录变更。 一、引入依赖1234<dependency> <groupId>org.liquibase</groupId> <artifactId>liquibase-core</artifactId></dependency> 二、文件配置2.1 spring配置1234spring: liquibase: enabled: true change-log: sql/changelog.yml enabled 属性设置为true change-log 属性设置sql变更的配置文件 2.2 change-log文件配置1234567891011121314151617181920212223databaseChangeLog: - changeSet: id: init author:...
相关推荐
2024-01-25
git常用命令
代理相关设置http代理12git config --global http.proxy 127.0.0.1:7890git config --global https.proxy 127.0.0.1:7890 查看http代理12git config --global --get http.proxygit config --global --get https.proxy 取消设置http代理12git config --global --unset http.proxygit config --global --unset https.proxy github1234# 设置代理git config --global http.https://github.com.proxy socks5://127.0.0.1:10808# 取消代理git config --global --unset http.https://github.com.proxy
评论
张晓风
文章
76
标签
19
分类
12
Follow Me
最新文章
计算机网络-第一章笔记
2025-03-02
单线复用--家里宽带
2025-03-01
计算机网络 - B站学习计划
2025-02-12
光猫路由改桥接,同时支持IPTV
2025-01-14
Centrifugo安装与使用
2025-01-09