Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How is Tomcat handled by IntelliJ IDEA 10.5

I am a newbie to IntelliJ IDEA. I was trying to deploy a web app in Tomcat.

It failed to deploy and i was not able to see any errors in the log console.

After much searching, I was able to find out the log files at ~/Library/Caches/IntelliJIdea10/tomcat/_p1/logs/ folder.

There were a bunch of log files here and one of the files contained the error. I then could solve the issue and proceed.

I was a user of eclipse and this error would have come directly in the log console in eclipse. However this is not the case in IntelliJ IDEA. Can somebody please explain what I am missing here?

Also, it would be nice if somebody could point out how the integration with Tomcat is done in IDEA (for better understanding). Note: I am using IntelliJ IDEA 10.5.2 Ultimate edition on Mac OS 10.6.8.

like image 248
Pipalayan Nayak Avatar asked Oct 08 '11 19:10

Pipalayan Nayak


2 Answers

IntelliJ IDEA instructs Tomcat to use temporary directory as CATALINA_BASE where it places context configuration with the Artifact path from your project settings, it doesn't copy your web application into webapps directory.

In the Tomcat Run/Debug configuration there is Logs tab where you can specify custom logs to show in IDEA console, it should work out of the box, but probably you have customized logging in Tomcat configuration or in the application itself. Or maybe Tomcat 7 logging configuration is different and doesn't work with IDEA in which case you should submit a bug.

like image 137
CrazyCoder Avatar answered Oct 07 '22 18:10

CrazyCoder


Here's some info for Windows users....if you check the boxes for 'Show console when stdout/stderr change', you may find that the Output tab does not show up even if stdout/stderr change.

For me, this was due to directory structure for the project containing spaces.

When I renamed the directory structure so that it did not contain spaces the Output tab showed up.

like image 21
Paul Avatar answered Oct 07 '22 19:10

Paul