• Maven jeetsite项目 搭建


     ,

    一直没有系统的总结一下Maven的知识,今天,想从网上找一个Maven的项目,练练手,顺便学习一下maven的原理 和布局。 

    官网:http://www.jeesite.com/

    没想到,上来就给我挖了个大坑,官网显示下载地址是:
    https://gitee.com/thinkgem/jeesite4其实这个地址问题很大,调试及其繁琐,还缺少文档。

    应该这样:进入官网: http://www.jeesite.com/ 点击导航栏的右侧:返回旧版。

    这里面有jeesite 源码下载,doc文档下载,一步步往下走

    这里的下载地址:https://gitee.com/thinkgem/jeesite; 

    下载然后按照doc里面的文档安装,
    第一步;运行Maven 底下的settings.bat,
    注意运行之后,在cmd 框里面仔细看清楚: 

    显示的很清楚:第一行就是:repository的文件夹:

    这是我的:
    D:worklearningjeesite-masterjeesite-masterdocmaven epository

    然后在系统变量里面把Path,设置好,在Eclipse中把maven地址设置好。如果设置错了,很麻烦,所以要仔细,多看几遍,不行就多做几遍。 


    3、导入项目之后,又开始报错了:

    Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.7 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.7
    Plugin org.apache.maven.plugins:maven-resources-plugin:2.7 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.7

    选中项目,后执行:右击 run as ==> mvn install==>显示了这个错误:
    Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/2.6.1/maven-clean-plugin-2.6.1.pom
    [WARNING] Failed to create parent directories for tracking file D:workyuleijeesitejeesite-masterjeesite-masterdocmavenmaven epositoryorgapachemavenpluginsmaven-clean-plugin2.6.1maven-clean-plugin-2.6.1.pom.lastUpdated;

    解决: 去网上查了一下,发现是maven 路径设置错误,查了一下果然,

    http://blog.csdn.net/a123demi/article/details/41078241

    如图所示:

    记住了,当点击左侧Maven底下的User Settings的时候,右侧的User Settings 有Global Settings 和 User Settings,都要设置成本地的,还有看一下下面的Local Repository;是不是已经更新到最新的位置了,这个是在最开始的执行settings.bat的时候设置的。如果设置有误,就手动进入settings.xml设置一下repository的地址;

    然后在右击项目 run as ==》 mvn clean ,好了;

    然后执行 run as ==> mvn install;

    又报错: No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?

    参考:https://zhidao.baidu.com/question/2053876598889689747.html
    把JRE换成JDK,然后再执行run install 就可以了;

    4、然后发现 java resoureces 还是有红色的叉叉;

    点击problem View==> 发现解决方法: 右击项目==》maven ==> update project;

    5、然后在eclipse中把tomcat 7配置上;

    5、然后项目右击 run as ==> run as server==> 又报错了:

    [StandardEngine[Catalina].StandardHost[localhost].StandardContext;

    上网查了一下:http://blog.csdn.net/josn_hao/article/details/63685903

    tomcat的缓存问题;

    清理了tomcat很多次,就是不行,直接在eclipse中删了tomcat,从新添加上tomcat,在启动,好了;

      

  • 相关阅读:
    windows利用net use删除smb连接
    用jquery的ajax功能获取网站alexa的方法
    11对于Web开发人员和设计师非常有用的在线工具
    Php获取Alexa排行统计
    php获取alexa世界排名值的函数
    26个免费矢量图片免费下载
    对makefile中双冒号规则的学习
    对makefile中 $*的理解
    GNU make manual 翻译(七十三)
    对makefile 中的 静态模式规则的理解
  • 原文地址:https://www.cnblogs.com/aspirant/p/8522146.html
Copyright © 2020-2023  润新知