- 博客(27)
- 资源 (1)
- 收藏
- 关注
原创 We‘re sorry but knife4j-vue doesn‘t work properly without JavaScript enabled.
We're sorry but knife4j-vue doesn't work properly without JavaScript enabled.
2024-05-16 16:55:24 2007 2
原创 git stash
将当前stash中的内容弹出,并应用到当前分支对应的工作目录上。将当前stash中的内容弹出,并且指定要弹出的内容下标。作用等同于git stash,区别是可以加一些注释。将所有未提交的修改(工作区和暂存区)保存至堆栈中。查看当前stash中的内容。其他不常用的就不写了。
2022-11-09 11:50:55 167 1
原创 nodejs安装
下载二进制文件(Windows Installer (.msi))https://nodejs.org/en/download/查看安装成功node -v查看镜像源npm config get registry设置taobao镜像npm config set registry https://registry.npm.taobao.org设置原来的镜像npm config set registry https://registry.npmjs.org...
2022-02-28 09:57:35 148
原创 MongoDB安装
下载地址https://www.mongodb.com/try/download/community通过点击 “Custom(自定义)” 按钮来设置安装目录下一步安装 “install mongoDB compass” 不勾选可视化工具下载,可选的https://www.mongodb.com/try/download/compass在MongoDB\Server\4.0\data目录下创建db文件夹进入bin目录,cmd打开DOS窗口,启动MongoDB服务执行命令mongod -dbpa
2022-02-14 11:08:45 349
原创 idea常用插件
idea插件右侧代码区缩放:codeglancejson生成类:GsonFormatPlus高亮开闭符:HighlightBracketPairget、set:Lombokmaven依赖查找:Maven Helpermybatis -> xml:MybatisX黑色主题:One Dark theme翻译:Translation
2022-02-11 09:12:28 311
原创 git撤销本次提交
软撤销 head^是指当前commit,可以改成任意commit idgit reset --soft head^硬撤销,彻底丢掉这次提交的全部修改git reset --hard head^
2022-02-11 09:11:10 852
原创 Maven项目初始化到git
创建本地项目,在项目根目录执行git init命令git init在git服务器上创建一个仓库执行git remote add origin <git path>从远程分支拉取master分支并与本地master分支合并。git pull origin master:master提交本地分支到远程分支git push -u origin master...
2022-02-07 12:48:49 349
转载 Mybatis获取sql语句
ThreadLocalSingletonimport com.google.common.collect.Lists;import com.google.common.collect.Maps;import java.util.List;import java.util.Map;public enum ThreadLocalSingleton { INSTANCE; private final ThreadLocal<List<Map<String, Obje
2022-01-29 11:19:32 1946
原创 SpringCache LocalDateTime Serialization mechanism
pom.xml <!-- spring-cache version 2.3.7.RELEASE --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </depende
2021-12-30 15:18:46 219
原创 knife4j文件类型参数展示
pom.xml <!-- knife4j version 3.0.2 --> <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>knife4j-spring-boot-starter</artifactId> </dependency>Controller@R
2021-12-03 11:33:42 1696
原创 日期格式正则yyyy-MM-dd HH:mm:ss
没有平年闰年之分// 2000-01-01 00:00:00 至 2099-12-31 23:59:59String REGEXP = "^[2][0][0-9][0-9]-([0][1-9]|[1][0-2])-([0][1-9]|[1][0-9]|[2][0-9]|[3][0-1]) ([0][0-9]|[1][0-9]|[2][0-3]):([0][0-9]|[1-5][0-9]):([0][0-9]|[1-5][0-9]|)$";
2021-09-02 15:45:18 290
转载 renren code generator of get/set
#foreach ($column in $columns)public $column.attrType get${column.attrName}() { return $column.attrname;}public void set${column.attrName}(${column.attrType} ${column.attrname}) { this.$column.attrname = $column.attrname;}#end原文
2021-07-06 09:36:05 198
原创 Spring GA、PRE、SNAPSHOT
Spring GA、PRE、SNAPSHOT 版本含义及区别GA:General Availability: 正式发布的版本,官方推荐使用此版本。在国外都是用GA来说明release版本的。PRE: 预览版,内部测试版。主要是给开发人员和测试人员测试和找BUG用的,不建议使用;SNAPSHOT: 快照版,可以稳定使用,且仍在继续改进版本。...
2021-07-05 11:10:46 168
原创 git撤销push的版本
git撤销push的版本查看提交日志git log回退到指定的版本git reset --hard 19eb8085git branch将当前版本push上去注意:这次操作会删除上一次提交记录,而不是重新提交一次,所以如果需要保存文件就先备份下git push origin 分支名 --force...
2021-06-18 16:59:29 254
原创 vue watch
watch: { 'data.prop':{ handler(newVal, oldVal) { // show in console console.log(newVal); console.log(oldVal); // if param `newVal` is not empty then will revalidate this prop if(newVal !== ''){ this.$refs.dataFor
2021-04-10 15:24:46 79
原创 springcloud&springcloudAlibaba version comparison
https://start.spring.io/actuator/info
2021-04-10 11:44:42 109
原创 vue form validate reset
vue 表单验证提示 重置resetForm(formName) { this.$nextTick(()=>{ if (this.$refs[formName] !== undefined) { this.$refs[formName].resetFields(); } }) }参照
2021-04-09 20:14:42 438
原创 IDEA build project for a long time
IDEA build project for a long time将此项取消勾选即可
2021-03-19 17:23:43 112
转载 jquery判断是否包含某个属性
Jquery 判断是否包含某个属性Get the attribute, check the valuevar attr = $(this).attr('name');// For some browsers, `attr` is undefined; for others, `attr` is false. Check for both.if (typeof attr !== typeof undefined && attr !== false) { // Element ha
2021-03-03 11:30:30 725 1
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人