tomcat integration with Idea 4.5.1.
Hi!
I'm new in Idea/tomcat and have problem with starting tomcat in idea. I'm using Idea version 4.5.1. I tried different versions of tomcat.
My application is in different root than tomcat so I set context element in server.xml. I'm using Turbine framework. In attachment is error log from idea for tomcat 4.1.24.
Attachment(s):
error.log
Please sign in to leave a comment.
I also have this problem.
I've set up tomcat to be a remote server in IDEA.
I don't know how i can deploy my .war file to the server from within IDEA. Can somebody help me with this?
It works manualy though.
There is difficult method:
http://www.phasesoft.com/articles/tomcat4idea/
But I simple wrote build.xml file for Ant, that compiles all java files in SRC (current sub-) directory, then copy them to WEBAPPS directory under Tomcat.
]]>
<copy todir="$">
<fileset dir="$" />
</copy>
</target>
Attachment(s):
build.xml