Post List

840 words 1 mins.

Speaking of which 说到这儿 we don’t see eye to eye 我们彼此看不顺眼 that’s how it is 原来如此 is this seat taken 我可以坐这儿吗 don’t flatter yourself 少臭美了 see you around 后会有期 keep your voice down 小声点 age before beauty 长者优先 with all due respect 恕我直言 go big or go home 要么吃鸡,要么成盒 time will tell 时间会证明一切 catch you...
2.3k words 2 mins.

# css 怎样排除第一个元素给其他元素设置样式 在 css 中可以利用 “:first-child” 选择器和 “:not” 选择器来设置除了第一个元素其他元素的样式。 :first-child 选择器用于选取属于其父元素的首个子元素的指定选择器。 :not(selector) 选择器匹配非指定元素 / 选择器的每个元素。 123.select_btn:not(:first-child) { padding-left: 90px;} # vue script...
3.3k words 3 mins.

最近用到了 Vue 页面使用 Yaml 编辑器,但是这样的组件也是从来没有接触过的,这边做个记载: 原文 # 安装必要依赖 npm install codemirrir@5.61.1 npm installl js-yaml@4.1.0 # 创建对应的组件 路径为...
602 words 1 mins.

关于 Mybatia 实现插入 List , 每次一段时间就忘了,这次决定记载下来。 Mapper层接口 1void bulkInsertAppTable(List<AppTable> appTableList); Xml实现 1234567891011<insert id="bulkInsertAppTable" parameterType="list" useGeneratedKeys="true"...
442 words 1 mins.

为 SpringBoot 添加统一的接口路径前缀,例如 /api/1.0 这样。 写一个 Springboot 配置类即可: 1234567891011121314/** * @author jinMao * @version 1.0.0 * @ClassName WebMvcConfig.java * @Description TODO * @createTime 2022-08-20 00:14:00 */@Configurationpublic class WebMvcConfig implements WebMvcConfigurer { @Override...
26k words 24 mins.

# SpringBoot javax 获取邮件内容,删除邮件、根据时间段筛选邮件,筛选时间段 + 未读邮件 首先需要导入依赖,由于使用的是 Gradle , 其实本质也和 maven 差不多 1234implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.11'//邮件implementation group: 'javax.mail', name:...
304 words 1 mins.

发现一个很有趣的,统计 git 项目中每个人提交代码的行数 1git log --format='%aN' | sort -u | while read name; do echo -en "作者: $name\t"; git log --author="$name" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END...
1.5k words 1 mins.

关于如何通过下载 URL 下载网络资源,最近做了一些整理 参考文章 差不多以下的几个都是可以 work 的 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950public class DownloadByUrl { private static final String DOWNLOAD_URL =...
476 words 1 mins.

关于推送本地的镜像到 Docker Hub 上 关于如何制作镜像:make DockerFile # 注册账号 official Website 注册完成之后,进入自己的账户信息页创建 Token # 本地登陆账号 12345docker login# Username: jinmaohub# Password: ${token}# Login Successed # 推送镜像 get images 1docker images 用 docker tag 来进行标记 12docker tag <image-name>...