有没有办法将tomcat conf文件夹位置更改为bin旁边的其他内容?
原件:
Tomcat - bin
conf
temp
lib
webapp
FolderABC -
预期:
Tomcat - bin
temp
webapp
FolderABC -
- conf -- server.xml
-- other files
答案 0 :(得分:0)
我认为你只有一种可能做这样的事情而不修补tomcat:
使用符号链接将conf目录重定向到您选择的目录:
如果你使用linux / macos这样的东西应该可以工作(没有太多的windows经验,抱歉)
mv conf FolderABC/conf
ln -s FolderABC/conf conf
以下是我的fedora核心系统/usr/share/tomcat6
的列表:
drwxr-xr-x. 2 root root 4096 May 16 09:51 bin
lrwxrwxrwx. 1 root tomcat 12 May 16 09:51 conf -> /etc/tomcat6
lrwxrwxrwx. 1 root tomcat 23 May 16 09:51 lib -> /usr/share/java/tomcat6
lrwxrwxrwx. 1 root tomcat 16 May 16 09:51 logs -> /var/log/tomcat6
lrwxrwxrwx. 1 root tomcat 23 May 16 09:51 temp -> /var/cache/tomcat6/temp
lrwxrwxrwx. 1 root tomcat 24 May 16 09:51 webapps -> /var/lib/tomcat6/webapps
lrwxrwxrwx. 1 root tomcat 23 May 16 09:51 work -> /var/cache/tomcat6/work