File tree 1 file changed +14
-3
lines changed
1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,19 @@ Eclipse导入:
63
63
64
64
源代码在` APIJSON-Master/APIJSON-Java-Server/APIJSONORM ` 项目中。
65
65
66
+ ### B3. pom.xml的错误修改。
67
+ 有可能这时候pom.xml中报错,例如:
68
+ ``` xml
69
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
70
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
71
+ ```
72
+ 这段带吗中的
73
+ ``` xml
74
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
75
+ ```
76
+ 提示错误。那么在Window->Preference->Maven->User Settings中查找你的包安装目录删除对应的包。
77
+ 具体操作请自行百度。
78
+
66
79
## C.开发说明
67
80
68
81
### C-1.基于Mysql数据库的开发流程
@@ -78,8 +91,6 @@ Eclipse导入:
78
91
| 密码 | root |
79
92
| 数据库 | thea |
80
93
81
-
82
-
83
94
那么需要在` DemoSQLConfig ` ,40-61行,改为自己数据库对应的链接
84
95
85
96
``` java
@@ -99,7 +110,7 @@ Eclipse导入:
99
110
@Override
100
111
public String getSchema() {
101
112
String s = super . getSchema();
102
- return StringUtil . isEmpty(s, true ) ? " thea" : s; // TODO 改成你自己的
113
+ return StringUtil . isEmpty(s, true ) ? " thea" : s; // TODO 改成你自己的。例如:将"thea"替换成你自己的“数据库名字”
103
114
}
104
115
```
105
116
You can’t perform that action at this time.
0 commit comments