• macOS Ventura 清除DNS缓存

    sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder...

    How to customize the Jackson ObjectMapper used by Hibernate-Types

    The easiest way to achieve this goal is to set the configuration property in the hibernate.properties filehibernate.types.jackson.object.mapper=com.vl...

    Docker Swarm + Portainer 安装

    安装compose启动dockerDocker Swarm创建用于portainer的docker-compose.yml启动portainer配置镜像加速地址安装...

    使用LocalDate获取本周周一和周日

    LocalDate today = LocalDate.now(); LocalDate monday = today.with(TemporalAdjusters.previousOrSame( DayOfWeek.MONDAY)); LocalDate sunday = today...

    linux 查看当前目录占用空间

    du -sh : 查看当前目录总共占的容量。而不单独列出各子项占用的容量du -lh --max-depth=1 : 查看当前目录下一级子文件和子目录占用的磁盘容量。...

    How to map a MySQL JSON column to a Java entity property using JPA and Hibernate

    How to map a MySQL JSON column to a Java entity property using JPA and Hibernate...