美文网首页
jeecg搭建环境

jeecg搭建环境

作者: 大黄想去看极光 | 来源:发表于2019-03-26 13:15 被阅读0次

    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>
    

    相关文章

      网友评论

          本文标题:jeecg搭建环境

          本文链接:https://www.haomeiwen.com/subject/kojgvqtx.html