上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 39 下一页

2023年3月7日

git 回退了,后悔又回退回去

摘要: 原因:开发中提交了,发现错误,回退 本地仓库版本回退 git reset [--soft | --mixed | --hard] [HEAD] #回退,默认为--mixed --soft ,已经add的暂存区以及工作空间的所有东西都不变。 PS:就是撤销我的commit,即未做commit操作 -- 阅读全文

posted @ 2023-03-07 11:21 何苦-> 阅读(163) 评论(0) 推荐(0) 编辑

2023年3月3日

MybatisPlus #{param}和${param}的用法详解

摘要: 作用 mybatis-plus接口mapper方法中的注解(如@Select)或者xml(如)传入的参数是通过#{param}或者${param}来获取值。 区别 1.解析方式: #{param}:会进行预编译,而且进行类型匹配,最后进行变量替换,括号中可以添加映射类型如 #{param,javaT 阅读全文

posted @ 2023-03-03 19:40 何苦-> 阅读(549) 评论(0) 推荐(0) 编辑

mysql: 看不见的空符号 char(9) char(10) char(13)

摘要: trim,消除前后的空格,没有效时果 update table_name set column_name = replace(replace(replace(column_name,char(9),''),char(10),''),char(13),''); 说明: table_name:表名 co 阅读全文

posted @ 2023-03-03 14:09 何苦-> 阅读(213) 评论(0) 推荐(0) 编辑

IDEA 服务器热部署详解(On Update action/On frame deactivation)

摘要: 配置属性: On Update action:当代码改变的时候,Idea执行什么操作; -Update resource:如果有更新,并且更新资源为(*.jsp,*.xml,不包括java文件),就会立即生效 -Update classes and resources:如果发现有更新,并且更新资源为 阅读全文

posted @ 2023-03-03 14:06 何苦-> 阅读(496) 评论(0) 推荐(0) 编辑

2023年3月2日

mysql sum 聚合计算后精度不准 出现多位小数点后的数

摘要: 解决办法 原收款单money 字段 为 decimal(28,8) 经过层层计算用到了 @total := ( beginning + @total + gather - verification ) AS 'balance', @num := ( @num + 1 ) AS 'num' 办法为最后 阅读全文

posted @ 2023-03-02 15:12 何苦-> 阅读(737) 评论(0) 推荐(0) 编辑

2023年2月28日

nvm node 版本管理

摘要: nvm安装与使用 1、nvm是什么 nvm全名node.js version management,顾名思义是一个nodejs的版本管理工具。通过它可以安装和切换不同版本的nodejs。下面列出下载、安装及使用方法。 2、下载 可在点此在[github](https://github.com/cor 阅读全文

posted @ 2023-02-28 18:21 何苦-> 阅读(98) 评论(0) 推荐(0) 编辑

IDEA报错Error running ‘Application‘: Command line is too long解决方案

摘要: IDEA报错Error running 'Application': Command line is too long.Shorten command line for Application or also for Spring Boot default configuration 问题背景 解决 阅读全文

posted @ 2023-02-28 16:46 何苦-> 阅读(2087) 评论(0) 推荐(0) 编辑

laravel 安装

摘要: 通过composer安装laravel composer create-project --prefer-dist laravel/laravel=5.6.* www.blog.com # 创建项目 create-project # 以压缩方式下载 --prefer-dist # 下载的版本 lar 阅读全文

posted @ 2023-02-28 14:08 何苦-> 阅读(45) 评论(0) 推荐(0) 编辑

laravel phpstorm ide-helper

摘要: composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/ composer create-project --prefer-dist laravel/laravel=6.* haoran compo 阅读全文

posted @ 2023-02-28 14:04 何苦-> 阅读(18) 评论(0) 推荐(0) 编辑

PHP 静态延迟绑定 static

摘要: PHP (self static parent 区别) self调用的方法和属性始终表示当前类的方法和属性 static调用的方法和属性为当前执行的类的方法和属性 parent调用的方法和属性为父类的方法和属性(存在继承关系) //self example.php class A { public 阅读全文

posted @ 2023-02-28 13:55 何苦-> 阅读(28) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 39 下一页

导航