Easter79 Easter79
3年前
springboot2.1整合mybatis
1:添加依赖<?xmlversion"1.0"encoding"UTF8"?<projectxmlns"http://maven.apache.org/POM/4.0.0"xmlns:xsi"http://www.w3.org/2001/XMLSchemainstance"xsi
翼
4年前
基于Vue的图片浏览v-viewer
第一步,安装npmivviewerS第二步,main.js引用importViewerfrom'vviewer'import'viewerjs/dist/viewer.css'Vue.use(Viewer)Viewer.setDefaults({Options:{'inline':true,'butto
Wesley13 Wesley13
3年前
MySQL添加新用户、为用户创建数据库、为新用户分配权限
登录MySQLmysqlurootp添加新用户允许本地IP访问localhost,127.0.0.1createuser'test'@'localhost'identifiedwith加密方式(mysql\_native\_password)by'123456';允许外网IP访问creat
Stella981 Stella981
3年前
Nutz 集成 Flowable 6.4.2 工作流 完全兼容 Activiti
废话不多说直接上代码。项目完整源码链接(https://gitee.com/threefish/NutzFw)1、添加maven依赖包<dependency<groupIdorg.flowable</groupId<artifactId
Stella981 Stella981
3年前
NC测试网站端口状态脚本
前提条件:aptgetinstallnetcatopenbsd方法一:vimultiping.sh添加如下内容:!/bin/bashwhile:;doforiin'192.168.1.180''www.baidu.com443''192.168.2.50770''www.163.com443';
Stella981 Stella981
3年前
Flutter之ConstrainedBox、SizedBox、UnconstrainedBox(尺寸限制类容器)
1 ConstrainedBox、SizedBox、UnconstrainedBox介绍1)、ConstrainedBox用于对子组件添加额外的约束。例如,如果你想让子组件的最小高度是80像素ConstrainedBox({Key
如何实现接收推送撤回通知栏指定通知?
实现方式请参照SealTalk中的ServiceExtension。具体步骤如下:给工程添加一个target:NotificationServiceExtension。主工程开启PushNotifications和BackgroundModes功能。Ser
卡里笔记 卡里笔记
2星期前
Python 数据类型入门:数字/字符串/列表 元组/字典/ 集合/字节/布尔,新手能直接用的代码指南
本文介绍了Python中常见的数据类型及其特性。数字类型包括整数、浮点数、布尔值和复数,其中bool是int的子类;字符串支持拼接、切片等操作;元组是不可变序列,定义单元素元组需加逗号;列表是可变序列,支持增删改操作;字典以键值对存储,键必须为不可变类型;集合用于存储无序不重复元素,支持集合运算;布尔类型在Python中表现为True/False,可与数字作比较。文章还比较了type()和isinstance()的区别,并提供了各类型的常用操作示例。