
杂项
文章平均质量分 83
az26
让编程变得简单。
展开
-
windows注册表增加jpg打开方式
直接保存为注册表文件:a.reg。注意,文本保存格式为ANSI(注册表格式)。Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations]“.jpg”=“PhotoViewer.FileAssoc.Ti...原创 2020-04-24 11:20:37 · 1824 阅读 · 0 评论 -
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin xx on project xx: Compilation
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin xx on project xx: Compilation failure找不到符号。根本原因:maven编译的时候,没有找到依赖的java类。解决:查找依赖jar包。之后,重新打依赖包,将本地仓库jar包删除,reimport一下,重新打包就OK了。...原创 2020-04-23 16:55:34 · 329 阅读 · 0 评论 -
mybatis-generator:"context" 的内容必须匹配 "(property*,plugin*,commentGenerator?,(connectionFactor
mybatis-generator在执行的时候报:XML Parser Error on line 58: 元素类型为 “context” 的内容必须匹配 “(property*,plugin*,commentGenerator?,(connectionFactory|jdbcConnection),javaTypeResolver?,javaModelGenerator,sqlMapGener...原创 2020-04-19 09:09:21 · 2876 阅读 · 0 评论 -
windows10默认系统变量
windows10默认系统变量C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;原创 2019-12-30 09:18:00 · 749 阅读 · 1 评论 -
windows下bat配置java开发环境
下面的脚本直接保存为bat,把JAVA_HOME修改下,运行即可。setx JAVA_HOME "D:\Program Files\Java\jdk1.8.0_231"setx PATH "%PATH%;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;"setx classpath ".;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.ja...原创 2019-11-13 16:30:30 · 227 阅读 · 0 评论 -
mysql 1045
Access denied for user ‘root’@’xxx.xxx.xxx.xxx’(using pasword:YES)原因:mysql库中远程root用户的密码不对。解决:把root密码修改就可以了。修改密码:alter user ‘root’@’%’ identified by ‘666666’;更新下权限:FLUSH PRIVILEGES;...原创 2019-10-24 14:39:15 · 2579 阅读 · 0 评论 -
Remote host closed connection during handshake
Remote host closed connection during handshake具体报错内容:Exception in thread “main” com.sun.xml.internal.ws.client.ClientTransportException: HTTP transport error: javax.net.ssl.SSLHandshakeException: Re...原创 2019-04-09 11:05:59 · 5403 阅读 · 3 评论