原文地址:https://www.cnblogs.com/powerwu/articles/8480203.html (error) DENIED Redis is running in protected mode because protected mode is enabled Redis p ...
分类:
其他好文 时间:
2020-04-30 15:55:44
阅读次数:
96
mysql使用cmd登陆报错 搜索网上说可能是密码不对导致,但是确定密码没有问题,于是暂时跳过密码检查。 在my.ini中最后一行添加 skip-grant-tables,重启MYSQL服务,直接使用mysql登陆。 注:记得用完后,修改回my.ini,重启MYSQL服务。 参考链接:https:/ ...
分类:
数据库 时间:
2020-04-29 10:33:01
阅读次数:
71
for (var i = 0; i < this.myData.length; i++) { let obj = {} for (var key in this.myData[i]) { obj[key] = this.myData[i][key] } this.passedParameter.pu ...
分类:
其他好文 时间:
2020-04-28 00:51:37
阅读次数:
47
场景是用户表,角色表,权限表做权限管理; users表 role表 permission表 中间表users-role 中间表role-permission 查询用户没有的角色 在controller中 @RequestMapping("/findUserByIdAndAllRole.do") pu ...
分类:
其他好文 时间:
2020-04-27 22:29:37
阅读次数:
68
``` /** * 102. Binary Tree Level Order Traversal * 1. Time:O(n) Space:O(n) * 2. Time:O(n) Space:O(n) */ // 1. Time:O(n) Space:O(n) class Solution { pu... ...
分类:
其他好文 时间:
2020-04-27 13:04:46
阅读次数:
47
原因是数据库配置错误 错误配置: #数据库配置 spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/springboot?useUnic ...
分类:
数据库 时间:
2020-04-26 12:36:21
阅读次数:
108
三种方式: 1.通过继承Thread 重写run方法, public class HelloWordThread extends Thread { @Override public void run(){ System.out.println("hello world!!!!!!!!"); } pu ...
分类:
编程语言 时间:
2020-04-23 20:55:16
阅读次数:
64
一、Flutter 扫描二维码条形码插件 barcode_scan 1、安装 2、配置权限 Add the camera permission to your AndroidManifest.xml Add the BarcodeScanner activity to your AndroidMan ...
package Thread_test; import charactor.hero_sycn_2; //代码含义:逐渐减少英雄hp,如果英雄hp为0,就等待英雄恢复到大于0之后再继续减少到0, //展示了线程同步和wait和notify进行线程交互 public class test_1 { pu ...
分类:
编程语言 时间:
2020-04-22 12:50:14
阅读次数:
79
自定義Attribute 使用dotnet core 2.1 第一種 然後就可以使用Permission 第二種 在startup的configureservice添加 ...
分类:
Web程序 时间:
2020-04-20 23:40:50
阅读次数:
217