Eclipse无法在mac上看到/ usr / local文件夹

时间:2017-01-06 12:39:53

标签: eclipse macos tomcat finder

我正在使用Java开发一个Java应用程序。 Web应用程序将在tomcat上运行。 我在/usr/local/apache-tomcat安装了tomcat。

当我尝试在Server->Runtime Environments中设置tomcat运行时时,我无法看到文件夹/usr/local如何让eclipse看到/usr/local/apache-tomcat目录?

在Finder中使用/usr/local选项时,我可以看到Go to Folder

enter image description here

4 个答案:

答案 0 :(得分:2)

我在Mac上的/ usr / local / for Eclipse中加载外部jar文件时遇到了类似的问题   我解决这个问题的方法是使用ln -s创建一个软链接到/ usr / local中的文件夹到可见文件夹,然后加载jar。

ln -s source visible_location/link 

适合我。

答案 1 :(得分:1)

我只是遇到了类似的问题,发现的解决方法是复制/粘贴您的 tomcat base 目录的路径,然后它工作正常:

  1. 转到您的 tomcat库目录
  2. pwd获取路径并复制它
  3. 转到eclipse->首选项->服务器->运行时环境->添加按钮->选择apache tomcat版本->然后选择下一步
  4. 在此步骤中,您无需浏览,只需将复制的路径粘贴到 Tomcat安装目录字段中即可。

enter image description here

etvoilà

答案 2 :(得分:0)

我的猜测是你有你的取景器设置隐藏隐藏的文件夹。可以通过following the instructions in this article显示它们。

最简单的方法是在终端中键入以下内容:

defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder

如果您输入安装文件夹的全名而不是使用finder,它是否有效?

答案 3 :(得分:0)

您可以轻松控制在bash_profile

中编写此文件的隐藏文件
alias hideOn='defaults write com.apple.finder AppleShowAllFiles TRUE'
alias hideOff='defaults write com.apple.finder AppleShowAllFiles FALSE'
alias kFinder='killAll Finder'
alias hOn='hideOn && kFinder'
alias hOff='hideOff && kFinder'

然后,重新打开终端并写入hOn。在根文件夹中,您将看到隐藏的/ usr。只需将其放入您的取景器边栏即可。然后编写hOff,你将停止看到隐藏的文件,但/ usr将始终在finder上。