摘要: 项目引用的jar包数了一下将近100个,直接引用其他项目的pom文件自然也不适合。所以有了下面的代码,把使用到的jar包放在文件夹中,运行一下,自动生成。 import java.io.File; import java.io.File; import java.io.FileInputStream 阅读全文
posted @ 2019-04-05 20:17 滤v镜 阅读(3056) 评论(0) 推荐(0) 编辑
摘要: show databases; 显示数据库use mysql; 进入数据库show tables; 显示示数据库中的表desc user; 查看user表的数据结构flush privileges; 刷新数据库信息select host.user,password from user; 查询user 阅读全文
posted @ 2019-04-05 19:35 滤v镜 阅读(296) 评论(0) 推荐(0) 编辑
摘要: MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可。开发这个分支的原因之一是:甲骨文公司收购了MySQL后,有将MySQL闭源的潜在风险,因此社区采用分支的方式来避开这个风险。MariaDB之于MySQL,类似于CentOS之于Redhat。由于Oracle 阅读全文
posted @ 2019-04-05 19:26 滤v镜 阅读(482) 评论(0) 推荐(0) 编辑
摘要: /* Navicat MySQL Data Transfer Source Server : plan Source Server Type : MySQL Source Server Version : 50717 Source Host : localhost:3306 Source Schem 阅读全文
posted @ 2019-04-05 18:39 滤v镜 阅读(180) 评论(0) 推荐(0) 编辑
摘要: archetype:create-from-project 阅读全文
posted @ 2019-04-05 16:30 滤v镜 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 说明:IntelliJ IDEA 版本为14.JDK 版本为1.7tomcat 版本为apache-tomcat-7.0.70 注:在创建过程中注意相关软件版本位数的问题。32位,64位的软件混搭会导致访问不成功的问题!!! 首先要理解一个基本问题:对比eclipse ,在IntelliJ IDEA 阅读全文
posted @ 2019-04-05 11:32 滤v镜 阅读(555) 评论(0) 推荐(0) 编辑
摘要: 相关软件: Intellij Idea14:http://pan.baidu.com/s/1nu16VyD JDK7:http://pan.baidu.com/s/1dEstJ5f Tomcat(apache-tomcat-6.0.43):http://pan.baidu.com/s/1kUwReQ 阅读全文
posted @ 2019-04-05 11:14 滤v镜 阅读(202) 评论(0) 推荐(0) 编辑
摘要: grant all privileges on *.* to user@'localhost' Identified by 'password' WITH GRANT OPTION; grant all privileges on *.* to root@'%' Identified by 'pas 阅读全文
posted @ 2019-04-05 10:58 滤v镜 阅读(266) 评论(0) 推荐(0) 编辑
摘要: ERROR 1130: Host ’192.168.1.3′ is not allowed to connect to this MySQL server这是告诉你没有权限连接指定IP的主机,下面我们来看看解决办法。处理方法有二个 1、(如何解决客户端与服务器端的连接(mysql) :xxx.xxx 阅读全文
posted @ 2019-04-05 10:54 滤v镜 阅读(3875) 评论(0) 推荐(0) 编辑
摘要: navicat 连接mysql报错: 1130- Host xxx is not allowed to connect to this MariaDb server 解决方案: 1.确保服务器开启了3306端口。 2.改表法: mysql -u root -pmysql>use mysql;mysq 阅读全文
posted @ 2019-04-05 10:37 滤v镜 阅读(698) 评论(0) 推荐(0) 编辑