1
xuhaoyangx 2016-09-19 00:35:51 +08:00
日志不是已经给出了问题所在了么。
还有人用 myeclipse-。-,感觉好久没见过。 |
2
rongyiran OP @xuhaoyangx 是的,的确没有这个文件。
嘻嘻,我想自己学学 Java Web 开发,现在主流用的都是 Idea 了,一些资料还是 MyEclipse |
3
xuhaoyangx 2016-09-19 00:40:34 +08:00
@rongyiran 没必要, ide 只是个工具,我一样用着 idea 编辑的老项目。目测你还在看老的要死的 ssh-。-, springmvc mybatis 多好。
|
4
rongyiran OP @xuhaoyangx 既然您这么建议,那我还是直接上 IDEA 吧。
|
5
SoloCompany 2016-09-19 02:45:01 +08:00
把 Tomcat 装到 /Library
并且 CATALINA_HOME 居然也指向 /Library 你到底是怎么做到的。。。 难不成你的 macOS 还能用 root 登录???黑人问号??? |
6
rongyiran OP |
7
rongyiran OP @SoloCompany Installing Tomcat
Here are the easy to follow steps to get it up and running on your Mac Download a binary distribution of the core module: apache-tomcat-8.5.3.tar.gz from here. I picked the tar.gz in Binary Distributions / Core section. Opening/unarchiving the archive will create a folder structure in your Downloads folder: (btw, this free Unarchiver app is perfect for all kinds of compressed files and superior to the built-in Archive Utility.app) ~/Downloads/apache-tomcat-8.5.3 Open to Terminal app to move the unarchived distribution to /usr/local sudo mkdir -p /usr/local sudo mv ~/Downloads/apache-tomcat-8.5.3 /usr/local To make it easy to replace this release with future releases, we are going to create a symbolic link that we are going to use when referring to Tomcat (after removing the old link, you might have from installing a previous version): sudo rm -f /Library/Tomcat sudo ln -s /usr/local/apache-tomcat-8.5.3 /Library/Tomcat Change ownership of the /Library/Tomcat folder hierarchy: sudo chown -R <your_username> /Library/Tomcat Make all scripts executable: sudo chmod +x /Library/Tomcat/bin/*.sh |
8
xuhaoyangx 2016-09-19 10:55:25 +08:00
@rongyiran 我想修哪儿就丢哪儿。。
|