I have Hello World web service application based on Jersey in my Eclipse IDE that runs on Windows. Trying to add Request Dumper Filter. I need to define CATALINA_BASE/conf/logging.properties
for this purpose. But where is CATALINA_BASE when I run Tomcat from Eclipe IDE. Looks like to editing C:/tomcat/config/logging.properties
makes no effect, because logs not appear in C:/tomcat/logs/
Asked
Active
Viewed 1,063 times
0

vico
- 17,051
- 45
- 159
- 315
1 Answers
0
CATALINA_BASE
is configured in the Server Locations
section which you can access by double click Tomcat
in the Servers Tab :
To set it to be the same as your tomcat server folder , you can choose "Use Tomcat installation".
BTW, you can use ps -ef | grep java
(For Windows world, it is tasklist
I think) to verify what folder is CATALINA_BASE
refer to after starting the tomcat.

Ken Chan
- 84,777
- 26
- 143
- 172
-
My `Server Locations` not allows selection. All of them are unchecked and disabled. – vico Feb 23 '19 at 20:02
-
yeah . forget to mention , it is very annoying , I also don't have the idea why it does not allow to modify . I usually delete the server and re-create again such that I can choose that server location options. – Ken Chan Feb 23 '19 at 20:06