remote debugging with tomcat/eclipse, while others are sharing system -
i have setup tomcat remote debugging through eclipse, have added following configuration in tomcat startup script
export jpda_address=9999
export jpda_transport=dt_socket
echo $jpda_address
…….
exec "$prgdir"/"$executable" jpda start "$@"
however, there multiple developers working on server , when debugger stops @ breakpoint added, other developers stuck, there anyway in tomcat allow other developers continue running application seamlessly while debugging?
as made me realise, need second independent tomcat instance. underlined in comment below, debug breakpoint mechanism in jvm stop all webapps reaching breakpoint if duplicate them (said otherwise regardless of number of working threads, each thread freeze , wait or resume signal).
Comments
Post a Comment