博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
新建我的 第一个maven项目
阅读量:5046 次
发布时间:2019-06-12

本文共 1639 字,大约阅读时间需要 5 分钟。

maven是管理项目的,myeclipse是编写代码的。第一次写项目都要配置好多东西,很麻烦,now 来看看怎样新建一个maven项目。

百度经验:jingyan.baidu.com

工具/原料

 
  • myeclipse
  • maven

百度经验:jingyan.baidu.com

方法/步骤

 
  1. 1

    因为教程使用的maven是自己下载配置的,并没有使用myeclipse自带的(高版本的myeclipse自带maven)。所以首先你要安装了maven。maven的下载安装可参考下面的经验。

     

    0

     
  2. 2

    打开myeclipse(本经验中使用的是myeclipse2014),Window-->preferences。

  3. 3

    找到myeclipse-->maven4myeclipse,如果你要下载源码和帮助文档就勾选上图中那两个框。

  4. 4

    在maven4myeclipse下找到installations,把自己安装的maven添加进来。如图:

  5. 5

    找到user settings。将user settings设置为maven项目下的cfon/settings.xml,确定。

  6. 6

    新建一个web工程,勾选上add maven support,java version要在1.7及以上.

  7. 7

    然后一路next,到项目结构那儿,选择maven的项目结构。

  8. 8

    如果幸运的话,新建的项目没有错。如果提示错误:

    Failure to transfer org.apache.maven:maven-artifact:pom:2.0.6 from http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.apache.maven:maven-artifact:pom:2.0.6 from/to central (http://repo.maven.apache.org/maven2): No connector available to access repository central (http://repo.maven.apache.org/maven2) of type default using the available factories pom.xml /hello line 1 Maven Configuration Problem

  9. 9

    那样的话,打开Window-->preferences-->myeclipse-->maven4myeclipse--->user settings把local repository里面的地址复制。

    如果你的myeclipse没有的话,就找到:

    c:\users\{你的电脑账号}\.m2\repository (一般在这个文件夹里)。

    比如我的:c:\users\long\.m2\repository 

  10. 10

    找打repository文件及后,在里面搜索 maven*.lastupdated。把搜出来的文件都删了。

  11. 11

    重启myeclipse,右键项目--->maven4myeclipse--->update project...

  12. 12

    勾选Force Update of Snapshots/Releases,然后ok退出,如果还是错误,不要着急,先等一会。如果过了一会还是有错,那就问度娘吧。如果解决了,记得投我一票哦。

    END

转载于:https://www.cnblogs.com/hoobey/p/6078931.html

你可能感兴趣的文章
学习网址
查看>>
前端表格插件datatables
查看>>
内部类
查看>>
树链剖分入门
查看>>
图解算法时间复杂度
查看>>
UI_搭建MVC
查看>>
一个样例看清楚JQuery子元素选择器children()和find()的差别
查看>>
代码实现导航栏分割线
查看>>
Windows Phone开发(7):当好总舵主 转:http://blog.csdn.net/tcjiaan/article/details/7281421...
查看>>
VS 2010打开设计器出现错误
查看>>
SQLServer 镜像功能完全实现
查看>>
Vue-详解设置路由导航的两种方法
查看>>
一个mysql主从复制的配置案例
查看>>
大数据学习系列(8)-- WordCount+Block+Split+Shuffle+Map+Reduce技术详解
查看>>
dvwa网络渗透测试环境的搭建
查看>>
Win8 安装VS2012 和 Sql Server失败问题
查看>>
过点(2,4)作一直线在第一象限与两轴围成三角形,问三角形面积的最小值?...
查看>>
java aes CBC的填充方式发现
查看>>
使用ionic cordova build android --release --prod命令打包报有如下错误及解决方法
查看>>
BZOJ 2338 HNOI2011 数矩形 计算几何
查看>>