logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

【Spring-boot】使用filter对request body参数进行校验

@Slf4jpublic class ParameterCheckServletRequestWrapper extends HttpServletRequestWrapper {private byte[] requestBody;private Charset charSet;public ParameterCheckServletRequestWrap...

linux替换文件下所有文件内容

1、普通版    sed -i "s/zhangsan/lisi/g" `grep zhangsan -rl /www`2、适用于内容中带有“/”    sed -i "s#python3#/usr/local/bin/python3#g" `grep python3 -rl *.sh`

linux下安装微软雅黑字体库

第一步我们需要执行以下的命令来安装字体管理工具: yum install -y fontconfig mkfontscale找到字体,https://pan.baidu.com/s/1pL5asEv 在 /usr/share/fonts/建立一个目录放字体执行命令 kfontscale mkfontdir fc-cache 重新启动tomcat服务即可:有了微软雅黑了转自:https://blog

RequestBody使用(spring-boot集成swagger)

bean@Data@ApiModelpublic class UserRepay {@NotNull(message = "用户ID不能为空")@ApiModelProperty("用户ID")private Long userId;}controller@RestController@Api(tags = &quot

替换及重置Homebrew默认源

替换brew.git:cd "$(brew --repo)"git remote set-url origin https://mirrors.ustc.edu.cn/brew.git替换homebrew-core.git:cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"git remote se

【Spring-boot】spring-batch传参数问题

Spring-boot集成spring-batch传参数时一般方法为:@Bean("step1Reader")public JdbcPagingItemReader<T> step1Reader(DataSource dataSource) {Map<String, Order&g

到底了