相关文章
SpringBoot-Druid
目录 1.什么是Druid
2.主要优点和原因
3.误区
4.Part代码
0.pom
1.Spring.datasource.type: com.alibaba.druid.pool.DruidDataSource
2.Druid用Jasypt加密任意内容
EnableEncryptableProperties开启加密注解
3.Druid监控平台 1.什么是Druid
Druid 是一个开源的数据库…
建站知识
2024/11/28 21:38:05
python编程:使用 Pillow 将照片转换为1寸报名照片
引言: 在现代科技时代,我们经常需要调整和处理照片以适应特定的需求和用途。本文将介绍如何使用 wxPython 和 Pillow 库,通过一个简单的图形界面程序,将选择的照片转换为指定尺寸的 JPG 格式,并保存在桌面上。
C:\pyt…
建站知识
2024/11/28 21:46:43
goadmin 学习笔记
1.安装命令行
Following three steps to run it.
Note: now you can quickly start by doing like this.
$ go install github.com/GoAdminGroup/admlatest
$ mkdir new_project && cd new_project
$ adm init
Or (use adm whose version higher or equal than v1.…
建站知识
2024/11/28 21:59:00
Vue3 封装 element-plus 图标选择器
一、实现效果 二、实现步骤
2.1. 全局注册 icon 组件
// main.ts
import App from ./App.vue;
import { createApp } from vue;
import * as ElementPlusIconsVue from element-plus/icons-vueconst app createApp(App);// 全局挂载和注册 element-plus 的所有 icon
app.con…
建站知识
2024/11/28 21:57:07
【postgresql】替换 mysql 中的ifnull()
数据库由mysql 迁移到postgresql,程序在执行查询时候报错。
HINT: No function matches the given name and argument types. You might need to add explicit type casts. CONTEXT: referenced column: ifnull 具体SQL:
SELECT ifnull(phone,) FROM c_user p…
建站知识
2024/11/28 22:00:08
Hadoop分布式文件系统
一、Hadoop
Hadoop之父Doug Cutting
Hadoop的发音[hdu:p] ,Cutting儿子对玩具小象的昵称
1、Hadoop发展简史
2002年10月,Doug Cutting和Mike Cafarella创建了开源网页爬虫项目Nutch。2003年10月,Google发表Google File System论文。2004年…
建站知识
2024/11/28 21:38:47
Day56:组件库封装-TypeScript入门
配置
安装tsc工具进行编译 npm i typescript -g
查看版本号:tsc -v
编译ts代码-需要使用tsc编译之后才能运行,TS为JS的衍生,浏览器不能直接识别TS语法:tsc xxx.ts
运行ts代码:node xxx.js 或者直接运行ts代码——t…
建站知识
2024/11/25 5:28:18