为eclipse安装jetty插件

1.安装

打开eclipse->help->install new software弹出窗口

在work with输入地址:http://jettylauncher.sourceforge.net/updates

点击add按钮

下面列表出现jetty安装,选中jetty,next去安装

2.配置使用

在eclipse的maven项目中使用

在pom.xml配置文件里加上

<build>

<plugins>

<plugin>

<groupId>org.mortbay.jetty</groupId>

<artifactId>maven-jetty-plugin</artifactId>

<version>6.1.6</version>

<configuration>

<connectors>

<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">

<port>8080</port>

<maxIdleTime>60000</maxIdleTime>

</connector>

</connectors>

</configuration>

</plugin>

</plugins>

</build>

--<port>配置端口号

--<maxIdleTime>配置超时时间

3.启动服务器

右键maven项目,run as ->maven build..

输入:jetty:run就可以了

时间: 2024-10-16 18:54:01

为eclipse安装jetty插件的相关文章

Eclipse安装Jetty插件

通过Eclipse MarketPlace安装Jetty插件. Jetty下载 1.  2.3.4.5. 注:在使用Jetty的时候,同一个Project中,不可以同时存在两个版本的库,否则会出现找不到jar的情况.或者运行异常.而且,如果高版本和低版本同时存在,高版本会影响低版本. 这一点,千万小心.

eclipse中安装jetty插件并使用

一.eclipse中jetty插件安装: 打开eclipse,依次点击菜单Help->Eclipse Marketplace,在Find后面的框中输入jetty,选择第一项进行install即可. 二.jetty插件的使用: 安装成功后可能要重启eclipse: 然后开始配置: Run>run configurations> 在Jetty Webapp>右键>new,Browser想要启动的项目,配置端口号(我配的是8080),Arguments需要指向一个jetty.xml

eclips如何安装jetty插件

转载自http://www.cnblogs.com/nightswatch/p/4639687.html的博文 eclipse中安装jetty插件并使用 一.eclipse中jetty插件安装: 打开eclipse,依次点击菜单Help->Eclipse Marketplace,在Find后面的框中输入jetty,选择第一项进行install即可. 二.jetty插件的使用: 安装成功后可能要重启eclipse: 然后开始配置: Run>run configurations> 在Jett

Eclipse安装Propedit插件、SVN插件、js插件

1.在线安装Propedit 打开Eclipse的在线安装界面,点击Add Name: propedit Location:http://propedit.sourceforge.jp/eclipse/updates/ 2.在线安装Subclipse Name: subclipse 1.6.x Location:http://subclipse.tigris.org/update_1.6.x 安装完成即可使用. 3.安装包安装 下载spket-1.6.23,解开压缩包以后,把最里面的featur

eclipse安装maven插件-解决requires ‘bundle org.slf4j.api 1.6.2′

eclipse安装maven插件-解决requires 'bundle org.slf4j.api 1.6.2′ [转载]http://robin.sh/html/1526_eclipse-maven.html 给eclipse安装maven插件,网上教程已经很多,不在累述.关键是安装过程中报错:requires 'bundle org.slf4j.api 1.6.2' but it could not be found. 这个错误很难搞,网上提供的解决方案绝大部分都不起作用.可能跟eclips

Eclipse安装svn插件的几种方式 转帖....

Eclipse安装svn插件的几种方式 1.在线安装: (1).点击 Help --> Install New Software... (2).在弹出的窗口中点击add按钮,输入Name(任意)和Location(插件的URL),点击OK (3).勾选出现的插件内容,一步步安装即可. 注:目前在线安装svn的版本只有1.6.x和1.8.x地址分别是:http://subclipse.tigris.org/update_1.6.xhttp://subclipse.tigris.org/update

eclipse安装tomcat插件

eclipse安装tomcat插件有2种方法. 方法一:直接下载tomcat的插件压缩包,解压后将文件拷到eclipse的插件目录plugins下,打开eclipse,点击Windows->preferences,点击tomcat进行相关设置.具体可参考 http://www.360doc.com/content/14/0312/22/12278201_360105062.shtml http://blog.sina.com.cn/s/blog_671c968b0100ptff.html 方法二

STS或eclipse安装SVN插件(转)

安装sts--SVN插件 简介:sts是与eclipse类似的Java IDE开发工具(不了解的百度) 1.sts菜单栏 help->install New Software 依据大家的版本选择:http://subclipse.tigris.org/update 比如:http://subclipse.tigris.org/update_1.8.x 4.选种subclipse插件,点击Finish就可以了(根据自己需要安装). 5.Finish完了之后呢?它会自动的从指定资源下去找安装的插件.

Eclipse安装SVN插件方式简明介绍

一.Links安装: 推荐使用此种安装方式,因为它便于插件的管理. 在eclipse根目录下新建文件夹links,这样就得到了eclipse\links 在eclipse\links下新建一个link文件(需要为每个插件建一个.link文件),比如svn.link,在这里我的插件安装目录结构为F:\eclipsePlugins\svn\,所以link文件名我命名为svn.link 在svn.link中写入如下一句话path=F:/EclipsePlugins/svn,或者path=F:\\Ecl