logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

前端防抖函数

function debounce (fn,delay){let timer;return function (...args){if(timer){clearTimeout(timer)}timer = setTimeout(()=>{fn.apply(this,args).

#javascript
H2database 数据库持久化配置

spring:jpa:hibernate:ddl-auto: updateshow-sql: truedatabase-platform: org.hibernate.dialect.H2Dialectdatasource:url: jdbc:h2:file:D:/data/dbdriver-class-name: org.h2.Driverusername: sapassword:h2:con.

h2数据库console无法打开

@Beanorg.h2.tools.Server h2Server() {Server server = new Server();try {server.runTool("-tcp");server.runTool("-tcpAllowOthers");} catch (Exception e) {e.printStackTrace();}return server;}

k8s镜像包下载

1.下载所需镜像链接:https://pan.baidu.com/s/10Qangf89xCMTe2NUATltNA提取码:1234

到底了