张蛋腚
码龄6年
关注
提问 私信
  • 博客:33,862
    33,862
    总访问量
  • 8
    原创
  • 350,990
    排名
  • 0
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:广东省
  • 加入CSDN时间: 2018-11-29
博客简介:

weixin_43858882的博客

查看详细资料
个人成就
  • 获得2次点赞
  • 内容获得2次评论
  • 获得15次收藏
创作历程
  • 2篇
    2021年
  • 6篇
    2020年
成就勋章
兴趣领域 设置
  • 大数据
    mysqlredis
  • 后端
    spring架构
  • 服务器
    linux
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

shell脚本git拉取代码并编译打包发送到部署服务器

#!/bin/bashstty erase ^Hread -e -p 'Please enter the code place directory:' FOLDERwhile [ -z $FOLDER ] do read -e -p 'file directory is empty, enter a new one:' FOLDERdoneif [ ! -d $FOLDER ] then mkdir $FOLDER echo
原创
发布博客 2021.11.06 ·
1217 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

spring-boot 2.0以上接口返回状态码HTTP/1.1 200 OK 处理

最近在与某平台调试时,对方请求我方接口一直失败,但是用浏览器或者postman请求正常,后得知是springboot2.0以上 tomcat 将返回状态码HTTP/1.1 200 OK中的OK去除了,这里附上解决方案链接:状态码如何返回HTTP/1.1 200 OK方案...
原创
发布博客 2021.08.04 ·
7882 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

修改springBoot内置Tomcat请参数可以支持特殊字符

/** * @version v1.0 * @ProjectName: xxxx * @ClassName: TomcatConfig * @Description: tomcat请求参数特殊字符处理问题 * @Author: xxxx * @Date: 2020/8/27 17:15 */@Configurationpublic class TomcatConfig { @Bean public ConfigurableServletWebServerFactory we
原创
发布博客 2020.08.28 ·
1046 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

css禁用div的点击事件

css禁用div的点击事件$("#creditPay").css("pointer-events","none");
原创
发布博客 2020.07.20 ·
1240 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

JS和JSP去除内容中的HTML标签

function escape(str) { str = str.replace(/<\/?.+?>/g, ""); return str.replace(/ /g, "")}JSP页面引用Regexp对象<%@ taglib uri="/htmlRegexp" prefix=“hr” %><tr> <td class="va-m text-right text-dark6" width="20%">导航内容:</td>
原创
发布博客 2020.07.07 ·
620 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏

使用JAVA8Lambda表达式对集合某字段求和

使用JAVA8Lambda表达式对集合某字段求和 Double salesAmount = yearLsit.stream().map(o -> BigDecimal.valueOf(o.getDeliveryAmount()-ArithUtils.add(o.getRebateApplyAmount(), o.getPriceDifferenceApplyAmount()))).
原创
发布博客 2020.06.29 ·
11969 阅读 ·
2 点赞 ·
0 评论 ·
13 收藏

JAVA使用Lambda表达式查找list集合中是否包含某值

JAVA使用Lambda表达式查找list集合中是否包含某值for (String className : allClassName) { if (!classDetailList.stream().filter(o -> ToolUtil.equals(o.getClassName(), className)).findFirst().isPresent()) { classDetailList.add(new AftersaleStatisticDTO().setClassNa
原创
发布博客 2020.06.13 ·
9230 阅读 ·
0 点赞 ·
1 评论 ·
0 收藏

java对list集合string类型排序

java对list集合string类型排序//按月份升序排序 Collections.sort(overList, (o1, o2) -> { if (Integer.valueOf(o1.getSalesMonth()) - Integer.valueOf(o2.getSalesMonth()) >= 0) { return 1; }else { return -1;
原创
发布博客 2020.06.13 ·
608 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏