SpringBoot发送邮件 1、pom <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.3.4.RELEASE</ ...
分类:
编程语言 时间:
2021-04-06 14:13:11
阅读次数:
0
方法/步骤 1、进入 mysql 的 bin 目录下,打开 cmd ,在此之前关闭mysql服务,并且结束mysqld.exe进程 2、输入命令 mysqld --skip-grant-tables 回车,此时就跳过了mysql的用户验证。注意输入此命令之后命令行就无法操作了,此时可以再打开一个新的 ...
分类:
数据库 时间:
2021-04-01 12:55:16
阅读次数:
0
1,mysql重置root密码。 编辑配置文件 /etc/my.cnf ,在[mysqld]后面任意一行添加“skip-grant-tables”用来跳过密码验证 接下来我们需要重启MySQL,使用service mysqld restart 进入mysql中重置密码, mysql> update ...
分类:
数据库 时间:
2021-03-31 12:22:32
阅读次数:
0
创建用户create user pidms_user identified by 'pidms_user';添加权限grant all privileges on *.* to pidms_user@'%' identified by 'kcm123456'; flush privileges; ...
分类:
数据库 时间:
2021-03-31 12:06:09
阅读次数:
0
生成 Application Container,以及 Application PDB 的作成方法:Oracle 的 CDB 中,本来就是可以有很多的 PDB,但是 Oracle 引入了一种特殊的 PDB,这种 PDB 被声明为:"AS APPLICATION CONTAINER"。这以后,我们可以 ...
分类:
移动开发 时间:
2021-03-29 12:05:12
阅读次数:
0
首先,需要通过button按钮来弹出授权框 <button open-type="getUserInfo" @getuserinfo="getUserInfo">微信登录</button> getUserInfo(e) { //拿到用户信息 信息包含头像,昵称 let detail = e.deta ...
分类:
微信 时间:
2021-03-29 11:35:23
阅读次数:
0
本文以第三方QQ邮箱服务器演示如何使用python的smtplib+email完成邮箱发送功能 一、设置开启SMTP服务并获取授权码 开启QQ邮箱SMTP服务 开启的最后一步是发送短信验证,获取 authorization。 QQ官方获取授权码的帮助文档。 使用SMTP服务有POP和IMAP(Int ...
分类:
编程语言 时间:
2021-03-18 14:00:35
阅读次数:
0
这是大佬KunMinX的文,原文地址:[Jetpack] 人生苦短,让脚手架为你节省时间 温馨提示: 本文以《让人耳目一新的 Jetpack MVVM 精讲》作为前置知识的铺垫,假定小伙伴们在阅读本文前 已对精讲篇的内容有了一定理解。 背景 人,不是机器,人注定会犯错。 尤其是在 多人协作的软件工程 ...
分类:
其他好文 时间:
2021-03-17 14:54:32
阅读次数:
0
<?php namespace app\common\controller;use app\common\controller\WechatAuth; class PortalBase extends Base{ protected function _initialize() { parent:: ...
分类:
微信 时间:
2021-03-17 14:39:03
阅读次数:
0
安装用composer 安装 EasyWeChat,这个就不说了! 安装后直接use使用; 以下代码是Fastadmin 框架里面写的 如果没用框架 就不用继承第5行 直接访问 test_send_template这个方法的地址即可实现授权微信登录然后发送模版消息(模版id等参数自行修改) 代码如下 ...
分类:
微信 时间:
2021-03-17 14:38:03
阅读次数:
0