#!/bin/sh # 遍历仓库里的 commit log, 替换author git filter-branch --env-filter ' an="$GIT_AUTHOR_NAME" am="$GIT_AUTHOR_EMAIL" cn="$GIT_COMMITTER_NAME" cm="$GI ...
分类:
其他好文 时间:
2021-01-29 12:22:43
阅读次数:
0
Woodstox是一个快速、开源的StAX实现;被视为执行效果最佳的StAX实现之一。本文主要介绍使用Woodstox来理XML,文中所使用到的软件版本:Java 1.8.0_191、woodstox-core-asl 4.4.1。 1、引入依赖 <dependency> <groupId>org. ...
分类:
编程语言 时间:
2021-01-28 11:39:34
阅读次数:
0
maven-assembly-plugin有什么好处呢? 英文原文:The Assembly Plugin for Maven is primarily intended to allow users to aggregate the project output along with its de ...
分类:
编程语言 时间:
2021-01-27 13:58:43
阅读次数:
0
get请求:-Dmaven.tomcat.uriEncoding=UTF-8 tomcat7:run 解决get请求中文乱码 post请求:在WEB-INFO下web.xml里添加如下过滤器代码 <filter> <filter-name>CharacterEncodingFilter</filte ...
分类:
编程语言 时间:
2021-01-27 13:08:41
阅读次数:
0
在 web.xml 中配置一个字符集过滤器即可 <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilt ...
分类:
编程语言 时间:
2021-01-27 13:08:28
阅读次数:
0
@ComponentScan(excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, classes = {Controller.class, RestController.class})) 前言 springboot ...
分类:
其他好文 时间:
2021-01-22 12:28:51
阅读次数:
0
Bayer色彩滤波阵列 拜耳色彩滤波阵列(Bayer Color Filter Array,CFA)是非常有名的彩色图片的数字采集格式。色彩滤波器的模式如上图所示,由一半的G,1/4的R,1/4的B组成。 拜耳色彩滤波器的模式、序列、滤波器有很多种,但最常见的模式是由Kodak提出的2*2模式。 当 ...
分类:
其他好文 时间:
2021-01-16 12:03:17
阅读次数:
0
在web.xml中配置以下内容: <!--配置MVC的乱码过滤--> <filter> <filter-name>encoding</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</ ...
分类:
Web程序 时间:
2021-01-15 11:50:19
阅读次数:
0
通用 缩进两个空格 等号两边留有空格 文件名为 my-component 组件名 React 文件名:帕斯卡命名 MyComponents ESlint <Foo superLongParam="bar" anotherSuperLongParam="baz" /> <Foo bar="bar" / ...
分类:
其他好文 时间:
2021-01-13 11:16:51
阅读次数:
0
纯函数有两个特点:1. 不改变原数组(没有副作用);2. 返回一个数组 1. Arrat.concat(value) 合并数组并返回一个新数组,不对原数组做改变 let array = [1,2,3,4,5]; let x = array.concat([10,20]); console.log(x ...
分类:
编程语言 时间:
2021-01-11 11:03:46
阅读次数:
0