红联Linux门户
Linux帮助

ubuntu下整合eclipse和tomcat的过程以及可能出现的问题

发布时间:2015-10-24 10:04:46来源:linux网站作者:SuperBeauty

1.下载插件,下载地址:http://www.eclipsetotale.com/tomcatPlugin.html,下载之后

然后将其拷贝到Eclipse的plugins文件夹下,解压缩,此时再打开Eclipse会发现上面有了三只小猫的图案

ubuntu下整合eclipse和tomcat的过程以及可能出现的问题


2.确保在tomcat关闭的情况下,打开eclipse,配置

windows->preferences->Tomcat和Windows->Preferences->Server->Runtime Environments

好了,这个时候千万别手贱打开tomcat!

如果你点击第一个按钮打开了tomcat,出现了错误,那就需要新建一个workspace,重新配置第2步

我碰到的错误是这样的:

Could not load the Tomcat server configuration at /Servers/Tomcat v7.0 Server at localhost-config. The configuration may be corrupt or incomplete

因为Linux与windows不同,有权限的问题,那就接着进行第3步


3.手动把 /opt/tomcat-7.0.62/conf/ 下的文件复制到 /workspace/servers/ <Tomcat version> Server at localhost-config / 目录下,并且改变这些文件的权限。

sudo cp -R /home/jack/apache-tomcat-7.0.62/conf /home/jack/workspace2/Servers\v7.0\Server\at\localhost-config

"\"是转义字符,别怀疑是我打错了。

再改变权限

sudo chmod 777 /home/jack/apache-tomcat-7.0.62/conf/*
sudo chmod 777 /home/jack/workspace2/Servers\v7.0\Server\at\locahost-config/*

这时可以去apache-tomcat文件夹下可以看到,原本conf文件夹图标上的锁没了

ubuntu下整合eclipse和tomcat的过程以及可能出现的问题

但是在workspace里面复制的文件还有

ubuntu下整合eclipse和tomcat的过程以及可能出现的问题

这我就不知道为什么了。


4.好了,打开eclipse,之后打开属于你的tomcat吧!


ubuntu 14.04 LTS eclipse tomcat配置:http://www.linuxdiyf.com/linux/14465.html

如何在Ubuntu服务器上使用eclipse(如何在服务器上使用GUI程序):http://www.linuxdiyf.com/linux/14329.html

在Ubuntu 15.04中使用Eclipse 4.4、Java 8以及WTP:http://www.linuxdiyf.com/linux/11736.html

Win7中使用Eclipse连接虚拟机中的Ubuntu中的Hadoop2.4:http://www.linuxdiyf.com/linux/10691.html

Linux下使用Eclipse编写MapReduce程序的配置:http://www.linuxdiyf.com/linux/7919.html