- 博客(19)
- 资源 (12)
- 收藏
- 关注
原创 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
1802
原创 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
317
原创 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
2863
原创 idea集成mybatis-generator
mybatis-generator是独立的工具包,与spring boot关系不大。只是正好顺手,就顺手弄了。搭建spring boot微服务new - project - Spring Initializr,下一步。填好Group,Artifact,Version等信息。默认也可以。next。选择你需要的功能。默认不选也没关系,后面也可以通过pom增加。填写工程名已经生成路径。...
2020-01-19 09:54:00
289
原创 基于docker的nexus私有服务器搭建以及阿里镜像使用
1安装1.1dockerdocker下载docker pull sonatype/nexus31.1.1快速启动与验证docker run -d -p 8081:8081 --name nexus sonatype/nexus3直接在服务器上验证:curl http://localhost:8081/1.1.2持久化数据持久化数据,简单来说,docker容器创建的数据都保存...
2020-01-08 17:27:32
476
原创 git clone Please make sure you have the correct access rights and the repository exists.
8.1Please make sure you have the correct access rightsand the repository exists.1、本地生成ssh key若是有.ssh的文件夹,删除。默认目录在C:\Users\procloud.ssh。打开git bash,执行ssh-keygen -t rsa -C “git username”,显示如下:Genera...
2019-12-30 13:57:14
157
原创 windows10默认系统变量
windows10默认系统变量C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;
2019-12-30 09:18:00
747
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
222
原创 lrzsz:There are no enabled repos.
lrzsz:There are no enabled repos.没有加载正确的仓库。可以直接下载tar包安装。tar包下载地址:https://deb.debian.org/debian/pool/main/l/lrzsz/lrzsz_0.12.21.orig.tar.gz安装指令:tar zxvf lrzsz_0.12.21.orig.tar.gz cd lrzsz_0.12.2...
2019-11-06 16:18:07
564
原创 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
2573
原创 基于Docker的Mysql安装
Mysql数据库,是时下最流行的关系型数据库管理系统之一。它体积小、速度快、总体拥有成本低,尤其是社区版开源这一特点,因而一般中小型网站都会选择Mysql作为网站数据库。Docker,是开源的应用容器引擎,可以让开发者将应用打包到一个可移植的镜像中,然后发布到任何流行的Linux或者Windows服务器中,可以让应用实现开箱即用,大大的简化和提高应用部署的效率。本篇文章主要介绍基于Docker...
2019-10-24 14:36:34
167
原创 Docker Command
Docker CommandUsage: docker [OPTIONS] COMMANDA self-sufficient runtime for containers一个自给自足的运行时容器Options:选项:–config string Location of client config files (default “/root/.docker”)本地客户端配置文...
2019-10-21 13:46:37
380
原创 Log4j日志SQL生成器
Log4j日志SQL生成器代码拿到后可以直接运行。import java.awt.Container;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.*;public class SQLGenerat...
2019-05-13 17:01:27
196
原创 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
5394
3
原创 bat 处理mysql入库
@echo offecho.set dbUser=rootset dbPasswd=admin123set host=localhostset port=3306echo please input the sql file.set /p sqlFile=rem 定义数据库名称。默认格式:test20190326_150501rem set dbName=test%date:0,4...
2019-03-26 16:04:54
204
原创 环境搭建之Centos7下搭建ActiveMQ5.15.8
环境搭建之Centos7下搭建ActiveMQ5.15.8引言版本以及下载地址JDK安装删除服务器自带的jdk安装查看安装目录配置环境变量验证ActiveMQ安装解压启动关闭管理界面登录防火墙添加8161和61616端口关闭防火墙(可选)客户端访问web管理界面引言这篇文章主要介绍Centos下搭建ActiveMQ。文章时间,ActiveMQ最新版本为5.15.8,这个版本需要依赖JDK8。...
2019-03-03 17:51:37
950
1
原创 环境搭建之Windows10与Centos7互联
环境搭建之Windows10与Centos7互联引言准备工作获取网关且配置DNS获取IP地址6.1.2.1通过workstation获取通过虚机获取配置linux网络地址重启生效配置windows网络地址宿主机共享上网验证引言作为一个开发,搭建本地环境,是基本的要求。这篇文章主要描述Windows10宿主机下搭建Centos7虚拟机,互联互通。并且Centos7可以上网。准备工作获取网关且...
2019-03-01 13:34:33
581
oracle install client V18.3 64bit for windows
2018-09-11
oracle install client V11.2 64bit for windows
2018-09-11
oracle install client 64bit 10.2.0.5 for windows
2018-09-11
jquery帮助文档
2010-10-15
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人