1.到https://github.com/zhangdaiscott/jeecg下载源代码,用IDEA打开
2.如果maven中有的依赖没导入,就在https://mvnrepository.com/下载jar,本地安装
具体命令为
C:\JavaTools\maven_repository>mvn install:install-file -Dfile="C:\jar\jeecg-p3-core-api-1.0.0.jar" -DgroupId=org.jeecgframework.p3 -DartifactId=jeecg-p3-core-api -Dversion=1.0.0 -Dpackaging=jar
3.然后复制docs中的sql语句,粘贴到管理工具进行执行
4.如果出现
java.lang.NoClassDefFoundError: org/apache/velocity/context/Context
则导入依赖
dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>2.0</version>
</dependency>