2023/4/13

springboot logback.xml 配置

springboot logback.xml 配置 <?xml version="1.0" encoding="UTF-8"?> <configuration debug="false"> <!--定义日志文件的存储地址 --> <property na…

  • springboot
  • 2023/4/13
  • helei
  • 603
  • 2023/4/10

    java生成指定区间随机整数

    public static void main(String[] args) { int start=10000; int end=99999; int number = new Random().nextInt(end - start + 1) + start; System.out.println(number); }

  • java
  • 2023/4/10
  • helei
  • 596
  • 2023/4/8

    java金额计算工具类

    package org.jeecg.modules.cdz.utils; import java.math.BigDecimal; import java.math.RoundingMode; import java.text.DecimalFormat; import java.util.Random; /** * 金额工具类,主要是金额的格式化,金额的…

  • java
  • 2023/4/8
  • helei
  • 622
  • 2023/4/7

    nginx 反向代理 502 Bad Gateway

    应该是SSL证书握手的时候,不匹配,造成握手失败 反向代理配置文件 location /{ #添加 proxy_ssl_server_name on; proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2; }

  • nginx 运维
  • 2023/4/7
  • helei
  • 608
  • 2023/4/4

    windows 倒计时,使用python tkinter实现

    #!/usr/bin/python3 from tkinter import * import base64 import time import _thread import queue import pygame class Application(Frame): """右键菜单item点击事件 点击后开启多…

  • python windows
  • 2023/4/4
  • helei
  • 607
  • 2023/4/4

    获取省市区JSON

    数据来源 http://datav.aliyun.com/tools/atlas/ 他这个接口逻辑是按层查询的,获取到第一层的 省份列表后,拿code去查这个省下面的市,然后拿每一个市的code再去查下面的区,以此类推,但是有些城市例如北京,只有2…

  • 生活
  • 2023/4/4
  • helei
  • 698
  • 2023/3/15

    华为云 yum报错 Error: Failed to download metadata for repo ‘epel’: Cannot download repomd.xml

    cd /etc/yum.repos.d mkdir yumbak mv *.repo yumbak wget -O /etc/yum.repos.d/CentOS-Base.repo https://repo.huaweicloud.com/repository/conf/CentOS-8-reg.repo sed -i "s/\$releasever/8-stream/g&q…

  • yum
  • 2023/3/15
  • helei
  • 585