Please consider editing your post and mark it as obsolete instead. Do you want to delete post?
Tomcat Server
Permanently deleted user
Created
Where can I download tomacat server and how can I set up it?( Let me know the latest version for it ). And how can I connect it with Intellij Idea. Please give me with detail information.
download latest tomcat from http://jakarta.apache.org/tomcat/index.html extract the files to a folder. in the bin directory there is a startup.bat copy the file to e.g. mystartup.bat.
set the variables set JAVA_HOME=%JAVA_HOME15% set JPDA_TRANSPORT=dt_socket set JPDA_ADDRESS=4045 ==> this can be changed to your preferred socket address
and change the line in mystartup.bat
call "%EXECUTABLE%" start %CMD_LINE_ARGS% to call "%EXECUTABLE%" jpda start %CMD_LINE_ARGS%
now you have tomcat started in debugging mode.
if you use idea or ecplise just enter the above settings into the tomcat startup remote debug options of either ide.
so now your up and running. keep in mind to deploy always your most recent debug build files into the tomcat webapps folder.
Where can I download tomacat server and how can I set up it?( Let me know the latest version for it ). And how can I connect it with Intellij Idea. Please give me with detail information.
hi kyaw
download latest tomcat from http://jakarta.apache.org/tomcat/index.html
extract the files to a folder.
in the bin directory there is a startup.bat copy the file to e.g.
mystartup.bat.
set the variables
set JAVA_HOME=%JAVA_HOME15%
set JPDA_TRANSPORT=dt_socket
set JPDA_ADDRESS=4045 ==> this can be changed to your preferred socket
address
and change the line in mystartup.bat
call "%EXECUTABLE%" start %CMD_LINE_ARGS% to call "%EXECUTABLE%"
jpda start %CMD_LINE_ARGS%
now you have tomcat started in debugging mode.
if you use idea or ecplise just enter the above settings into the tomcat
startup remote debug options of either ide.
so now your up and running. keep in mind to deploy always your most recent
debug build files into the tomcat webapps folder.
cheers
cedric
"Kyaw Lwin Tun" <no_mail@jetbrains.com> wrote in message
news:27705127.1110518139829.JavaMail.itn@is.intellij.net...