From 8df7f5acc3f434a8293bcd3ec31908cf12ab0348 Mon Sep 17 00:00:00 2001 From: "PC-20181118AWSO\\HuangGang" <462256272@qq.com> Date: Fri, 7 Jun 2019 20:12:25 +0800 Subject: [PATCH] =?UTF-8?q?pom.xml=E6=9C=89=E5=8F=AF=E8=83=BD=E5=87=BA?= =?UTF-8?q?=E7=8E=B0=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\264\346\230\216\346\226\207\346\241\243.md" | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git "a/\350\257\246\347\273\206\347\232\204\350\257\264\346\230\216\346\226\207\346\241\243.md" "b/\350\257\246\347\273\206\347\232\204\350\257\264\346\230\216\346\226\207\346\241\243.md" index f70596b94..2ab9aff30 100644 --- "a/\350\257\246\347\273\206\347\232\204\350\257\264\346\230\216\346\226\207\346\241\243.md" +++ "b/\350\257\246\347\273\206\347\232\204\350\257\264\346\230\216\346\226\207\346\241\243.md" @@ -63,6 +63,19 @@ Eclipse导入: 源代码在`APIJSON-Master/APIJSON-Java-Server/APIJSONORM`项目中。 +### B3. pom.xml的错误修改。 +有可能这时候pom.xml中报错,例如: +``` xml + +``` +这段带吗中的 +``` xml +xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +``` +提示错误。那么在Window->Preference->Maven->User Settings中查找你的包安装目录删除对应的包。 +具体操作请自行百度。 + ## C.开发说明 ### C-1.基于Mysql数据库的开发流程 @@ -78,8 +91,6 @@ Eclipse导入: | 密码 | root | | 数据库 | thea | - - 那么需要在`DemoSQLConfig`,40-61行,改为自己数据库对应的链接 ```java @@ -99,7 +110,7 @@ Eclipse导入: @Override public String getSchema() { String s = super.getSchema(); - return StringUtil.isEmpty(s, true) ? "thea" : s; //TODO 改成你自己的 + return StringUtil.isEmpty(s, true) ? "thea" : s; //TODO 改成你自己的。例如:将"thea"替换成你自己的“数据库名字” } ```