- 博客(9)
- 资源 (1)
- 收藏
- 关注
原创 错误1045(28000):用户‘root‘@‘localhost‘(使用密码:YES)拒绝访问
适用于windows安装MySQL对于出现拒绝访问root用户的解决方案错误1045(28000):用户’root’@‘localhost’(使用密码:YES)拒绝访问首先解析此英文:ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’ (using password: YES);解析的地方有两处:①Access denied(拒绝访问);②using password:NO/YES若MySQL已经没有启动,重启MySQL服务器:
2021-03-09 18:58:45 18405 2
转载 2021-03-08
关于ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’ 解决方法及免密登录MySQL跳转
2021-03-08 16:51:57 555
原创 数字签名 与 数字证书
数字签名 与 数字证书1.数字签名如果某一用户使用他的私钥加密明文,任何人都可以用该用户的公钥解密密文;由于私钥只由该用户自己持有,故可以肯定该文件必定出自于该用户;公众可以验证该用户发布的数据或文件是否完整、中途有否曾被篡改,接收者可信赖这些数据、文件确实来自于该用户,这被称作数字签名2.数字证书数字证书就是互联网通讯中标志通讯各方身份信息的一系列数据,提供了一种在Internet上验证您身份的方式,其作用类似于司机的驾驶执照或日常生活中的身份证。它是由一个由权威机构—–CA机构,又称为证书
2021-03-05 11:20:56 1296 1
原创 签名工具类
签名工具类Signature类此 Signature 类用来为应用程序提供数字签名算法功能。数字签名用于确保数字数据的验证和完整性。在所有算法当中,数字签名可以是 NIST 标准的 DSA,它使用 DSA 和 SHA-1。可以将使用 SHA-1 消息摘要算法的 DSA 算法指定为 SHA1withDSA。如果使用 RSA,对消息摘要算法则会有多种选择,因此,可以将签名算法指定为 MD2withRSA、MD5withRSA 或 SHA1withRSA。因为没有默认的算法名称,所以必须为其指定名称。Si
2021-03-04 19:31:39 1105 1
原创 RAS密钥数据类型转换:String转向PublicKey或PrivateKey
这里写自定义目录标题string密钥转PrivateKey和PublicKeyString转PrivateKeyString转PublicKeystring密钥转PrivateKey和PublicKeyString转PrivateKeypublic static PrivateKey toPrikey(String prikey) { PrivateKey privateKey = null; PKCS8EncodedKeySpec priPKCS8;
2021-03-04 18:25:22 2183 1
原创 Linux中打包maven项目报错
[root@localhost elasticsearch-analysis-ik-7.4.0]# mvn package[INFO] Scanning for projects...[WARNING] [WARNING] Some problems were encountered while building the effective model for org.elasticsearch:elasticsearch-analysis-ik:jar:7.4.0[WARNING] 'versio
2020-12-15 14:05:56 798
原创 测试Springboot时:org.springframework.beans.factory.UnsatisfiedDependencyException异常分析
造成这个问题的因素很多。这次造成的问题如下:o.s.test.context.TestContextManager : Caught exception while allowing TestExecutionListener [org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@71bbf57e] to prepare test instance [com
2020-12-11 18:46:11 1439
转载 idea springboot启动报SLF4J:Failed to load class “org.slf4j.impl.StaticLoggerBinder”
问题描述SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".SLF4J: Defaulting to no-operation (NOP) logger implementationSLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. . ____ _ __ _ _
2020-12-11 11:38:54 403
原创 解决Spring Boot Application in default package问题
问题描述:创建SpringBoot主函数时,报Spring Boot Application in default package错误。问题原因:查看官方文档给出的解释建议使用@springbootApplication 注解失效的情况下,推荐使用@CompentScan 和@EnableAutoConfiguration进行代替;解决方式:main 函数不能直接放在了java 目录之下,放在main函数下面的package中就可以了...
2020-12-11 11:30:02 596
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人