IDEA反向工程的建立

摘要: 1.先去plugin下载idea-mybatis-generator; 2.在resource下写下该文件命名为generatorConfig.xml 注意:这个要加在数据库链接的后面 至关重要?serverTimezone=UTC 这个至关重要 3.pom.xml 需要增加插件的依赖 4.点击插件 阅读全文
posted @ 2019-09-08 19:51 pokeTwo 阅读(261) 评论(0) 推荐(0)

IDEA的XML约束报红问题(URI Is Not Registered)

摘要: 摘自:https://blog.csdn.net/matthew_zhang/article/details/50757251 谢谢 使用IntelliJ Maven生成archetype时候,偶然会出现xml文件的头定义提示错误 URI is not registered 例如: 解决方法:鼠标点 阅读全文
posted @ 2019-09-08 18:07 pokeTwo 阅读(1868) 评论(1) 推荐(1)

安装redis

摘要: 1、推荐进入到linux路径/usr/local/下面 新建个redis2、$ wget http://download.redis.io/releases/redis-4.0.10.tar.gz3、$ tar xzf redis-4.0.10.tar.gz 4、$ cd redis-4.0.10/ 阅读全文
posted @ 2019-09-06 17:16 pokeTwo 阅读(122) 评论(0) 推荐(0)

Linux 正在执行命令和线程的查看

摘要: ps -ef |grep tomcat ps aux | grep '6379' 查询端口kill -15 9886 杀死重置kill -9 9886 强制杀死 阅读全文
posted @ 2019-09-06 15:51 pokeTwo 阅读(2880) 评论(0) 推荐(0)

开放linux 80端口

摘要: 首先解决下出现解决CentOS7出现的”Failed to start firewalld.service”问题 先输入systemctl unmask firewalld.service 然后 systemctl start firewalld.service 即可 怎么打开80端口呢? 在防火墙 阅读全文
posted @ 2019-08-27 08:29 pokeTwo 阅读(571) 评论(0) 推荐(0)

linux 安装nginx

摘要: 1.安装依赖包 //一键安装上面四个依赖yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel2.下载并解压安装包 //创建一个文件夹cd /usr/localmkdir nginxcd nginx//下载tar包wge 阅读全文
posted @ 2019-08-26 21:31 pokeTwo 阅读(160) 评论(0) 推荐(0)

Linux中的#和$区别

摘要: 【#】代表 root权限【$】代表普通用户 如果更改了/etc/profile , 或~/.bashrc等文档,可以用任何符号来代替它们。 linux窗口下的【root@locate~】其中的【~】代表代表用户的家目录(root为/root,一般user则为/home/username);【./】和 阅读全文
posted @ 2019-08-24 11:35 pokeTwo 阅读(1869) 评论(0) 推荐(0)

Linux固定ip

摘要: 去这里看https://www.linuxidc.com/Linux/2017-12/149910.htm 阅读全文
posted @ 2019-08-10 14:04 pokeTwo 阅读(54) 评论(0) 推荐(0)

IDEA快捷键大全

摘要: IntelliJ Idea 常用快捷键列表 转自https://www.cnblogs.com/adolfmc/p/10322518.html 如需更详细分类可以查看 https://blog.csdn.net/weixin_42189233/article/details/80566249 Ctr 阅读全文
posted @ 2019-08-10 13:25 pokeTwo 阅读(181) 评论(0) 推荐(0)

Eclipse快捷键大全

摘要: Eclipse快捷键大全 转自https://www.cnblogs.com/springl/p/8709260.htmlCtrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复 阅读全文
posted @ 2019-08-10 12:44 pokeTwo 阅读(132) 评论(0) 推荐(0)