搭建Eclipse、Resin Web开发环境

搭建Eclipse、Resin Web开发环境

一、当然是安装java开发环境

参看:
Java环境的搭建
http://www.cnblogs.com/ghj1976/archive/2010/04/14/1711895.html 

 

二、选择并下载一个合适的Eclipse。

推荐选择:Eclipse IDE for Java EE Developers, 这个集成版包含的功能比较全,省的还需要下载一些插件。

http://www.eclipse.org/downloads/

image

一定要确保安装了WTP (Web Tools Platform),它是一个开发J2EE Web应用程序的工具集。判断有没有安装,可以通过关于中看有没有下面这个图标:

image

http://eclipse.org/webtools/

因为后面我们resin的插件是基于WTP的。 这里我们选择 Eclipse Java EE 也是因为它集成了WTP。

 

三、 Resin的安装

参看:win7 下配置resin的一些tip
http://www.cnblogs.com/ghj1976/p/3357278.html

 

 

四、在Eclipse WTP中加入 resin server adapter

 

To add this update site to your eclipse configuration:

  1. Within Eclipse, access the menu: Help –> Install New Software...
  2. Click the "Available Software" tab
  3. Click the "Add Site"
  4. Enter http://caucho.com/eclipse
  5. Click "OK"
  6. Click "Refresh" and install the Resin Eclipse plugin!

 

image

 

 

image

 

五、

首先用 后面菜单 window - show view - servers 显示出来服务器框。如下图,如果之前没有设置过服务器,就会出现下面内容:

image

参考:

resin 如何集成eclipse开发
http://www.blogjava.net/zhaoguo543166/articles/372480.html 

Eclipse Marketplace上 安装resin 插件server
http://www.tuicool.com/articles/bqIZVn

 

 

参看:

官方说明如何在Eclipse下配置
http://wiki3.caucho.com/Eclipse

在Eclipse WTP中加入Resin server adapter
http://www.javatang.com/archives/2009/12/30/0134324.html

初识Resin 以及搭建基于Eclipse的开发环境(eclipse resin3.1 插件)
http://happysoul.iteye.com/blog/676285

原文地址:https://www.cnblogs.com/ghj1976/p/3381954.html