我使用egit插件安装了eclipse火星。它成功地从github下载项目,但如何将下载的github项目转换为可以在eclipse中通过Run As ... Run on server
成功启动的eclipse maven web项目?
我们以this two step authentication project on github为例。 如何使用Run As.. Run on server
让this project从eclipse启动?
以下是我目前采取的步骤:
1。)右键单击eclipse Project Explorer的白色背景。
2。)选择Import > Import ...
3.。)从结果对话框中的git中选择Git > Projects
单击“下一步”
4.。)选择Clone URI
,然后再次点击
5.。)在URI字段中输入以下内容:https://github.com/kyleboon/two-step-authentication-example
6。)单击“下一步”
7.。)再次单击“下一步”
8。)第三次单击“下一步”
9。)使用Import
选择new project wizard
。然后再次点击下一步。
10。)选择maven project
和import
11。)在eclipse Project Explorer中右键单击结果项目的根,然后选择Properties
。
12。)选择Project Facets
13.启用Project Facets
14。)选择Dynamic Web Module
使其成为dynamic web project
。单击“确定”。
15。)在eclipse Project Explorer中右键单击项目根目录。选择Maven download sources
,然后选择Maven update project
。
16。)在eclipse中右键单击项目根目录,然后选择Run As...Run on server
结果是tomcat在启动以下网址时出现404错误:http://localhost:8080/two-step-authentication-example/
那么为了在eclipse中使用Run As ...在服务器上运行成功启动这个特定的github项目,我会采取哪些步骤?这个问题适用于所有github web项目,但是我们正在使用这个特定项目作为案例研究来测试一个对其他github项目可重复的方法。