码迷,mamicode.com
首页 >  
搜索关键字:unable to execute de    ( 8855个结果
java.sql.SQLException: Unable to load authentication plugin 'caching_sha2_password'.
数据测试的时候出现: 网上查资料说的是mysql5.x 版本和 8.x版本的区别; 5.7版本是:default_authentication_plugin=mysql_native_password 8.x版本就是:default_authentication_plugin=caching_sha ...
分类:数据库   时间:2020-03-26 19:08:23    阅读次数:88
动态规划经典题型
一.问题 https://leetcode-cn.com/problems/nge-tou-zi-de-dian-shu-lcof/:面试题60:n个骰子的点数 二.解法 动态规划:用 dp[n][j] 来表示n个骰子的点数 j 出现的次数。 状态转移方程:表示n个骰子产生的点数 j 出现的次数等于 ...
分类:其他好文   时间:2020-03-26 01:26:22    阅读次数:69
python3 函数参数
1、缺省参数 在定义一个函数的参数是给其传入一个默认的值,不传的时候用默认参数,缺省参数只能放在后面 一个函数可以有多个缺省参数。 def test(a, b=22) result = a + b print(result) return result test(11) test(22,33) de ...
分类:编程语言   时间:2020-03-24 23:01:39    阅读次数:80
(转)git clone出现 fatal: unable to access 'https://github.com/...'的解决办法
如下图所示,当我Git克隆别人的repo时,会发生这样的错误.发现它尝试用http和https代理,后来仔细回想了下,原来是自己用了代理,忘记取消 # 查看当前git 的设置 git config --global -l # 设置代理 git config --global http.proxy h ...
分类:数据库   时间:2020-03-24 12:56:02    阅读次数:1310
js应用技巧集合
目录 装饰器 1、装饰器 /** 作者:sh22n链接:https://juejin.im/post/5e7822c3e51d4526f23a45ae来源:掘金 */ 类装饰器 装饰类的时候,装饰器方法一般会接收一个目标类作为参数。下面是一个给目标类增加静态属性 test 的例子: const de ...
分类:Web程序   时间:2020-03-24 12:52:02    阅读次数:97
struts2 jar包导入Unable to load configuration. - bean问题 (404 源服务器未能找到目标资源的表示或者是不愿公开一个已经存在的资源表示。)
用eclipse配置好了struts2,一运行tomcat就报错,我这里原因是我吧struts2的jar包都放进去了,太多了所以报错,然后我去掉了大部分留下几个核心jar包,还是报错, java.lang.NoClassDefFoundError: com/opensymphony/xwork2/A ...
分类:编程语言   时间:2020-03-23 22:24:43    阅读次数:1897
Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean
在Spring Boot项目中,出现这个错误有两种情况: 一,在main方法所在的类忘记添加@SpringBootApplication 二,缺少依赖,添加即可 <dependency> <groupId>org.springframework.boot</groupId> <artifactId> ...
分类:移动开发   时间:2020-03-23 20:33:18    阅读次数:82
Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.1.0
maven package 异常,今天打包springboot项目时碰到的问题。 Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.1.0…… 原因:文件夹被占用解决方法:关掉正在占用文件夹的程序然后重试 ...
分类:Web程序   时间:2020-03-23 18:38:36    阅读次数:111
linux使用lrzsz上传下载
1.软件安装1)编译安装root 账号登陆后,依次执行以下命令:cd /tmpwget http://www.ohse.de/uwe/releases/lrzsz-0.12.20.tar.gztar zxvf lrzsz-0.12.20.tar.gz && cd lrzsz-0.12.20./con ...
分类:Web程序   时间:2020-03-23 15:06:44    阅读次数:79
springboot整合redis实现缓存
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>1.5.2.RELEASE</version> </de ...
分类:编程语言   时间:2020-03-23 12:40:57    阅读次数:74
8855条   上一页 1 ... 53 54 55 56 57 ... 886 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!