现在在项目里大多都是直接使用微软的依赖注入框架,而微软的注入方式比较简单,不如 AutoFac 使用起来灵活,于是想给微软的依赖注入增加一些扩展,使得可以像AutoFac 一样比较灵活的注册服务 ...
分类:
其他好文 时间:
2020-02-25 18:16:50
阅读次数:
65
java.io.FileNotFoundException:class path resource [kwhRules.json] cannot be resolved to absolute file path because it does not reside in the file syst ...
问题复现与原因解释: div标签上用了v-if:level 2,level初始值是-1,只有在mounted中执行完某函数后给level赋值后,level的值才可能为真;而对图表的渲染就在赋值语句的下一行,echarts很可能找不到dom节点。因为在条件为假时,v-if不会渲染条件块,只有当条件为真 ...
分类:
其他好文 时间:
2020-02-24 20:41:47
阅读次数:
62
执行jdbc查询时抛出异常: Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engin ...
分类:
其他好文 时间:
2020-02-24 19:01:21
阅读次数:
86
添加用户报错,无法打开/etc/passwd文件 [root@backup ~]# useradd 123456 useradd: cannot open /etc/passwd 此问题是 chattr +i /etc/passwd吧文件属性改了, 可以使用chattr -i来还原配置。 chatt ...
分类:
其他好文 时间:
2020-02-24 13:24:52
阅读次数:
76
记一个使用vue router时的低级错误。 使用vue router时,打开网页出现如下错误: 一开始我以为是vue router没有安装好,重装后发现问题仍然存在。仔细检查过后发现问题出在main.js中的Vue对象中没有引用router: 在此总结一下使用vue router的步骤 首先安装好 ...
分类:
其他好文 时间:
2020-02-23 19:57:40
阅读次数:
183
报错如下: [*] Bundler failed to load and returned this error: 'cannot load such file -- bundler/setup'[*] You may need to uninstall or upgrade bundler 解决如 ...
分类:
其他好文 时间:
2020-02-23 13:09:47
阅读次数:
123
SQL> drop user test cascade;drop user test cascade*ERROR at line 1:ORA-01940: cannot drop a user that is currently connected SQL> select sid,serial# f ...
分类:
数据库 时间:
2020-02-21 20:27:59
阅读次数:
230
出现问题的原因: jdbc配置不正确 解决方案: 1、检查是否已添加数据库驱动jar包 2、检查数据库服务是否启动 3、检查数据库配置文件 主要为:dialect,driver_class,url,username,password这五项。 务必注意检查大小写以及英文标点。 4、检查是否缺少字符集、 ...
分类:
数据库 时间:
2020-02-20 18:34:51
阅读次数:
107
mysql8.0版本下命令行mysqld –skip-grant-tables 失效,无法登陆的问题1、管理员权限登陆cmd,不会使用管理员登陆的请搜索cmd,搜索结果右键。 2、命令行输入:net stop mysql;然后提示。服务停止中 --> 服务已停止,如出现其他错误请百度。 这只是一个示 ...
分类:
数据库 时间:
2020-02-20 15:03:39
阅读次数:
91