Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

  1. build the mifos.war
  2. copy it into your external Jetty's
  3. similar to Running Mifos with Jetty, launch Jetty with JVM remote debug options (note how due to suspend=y it will wait until the remote Debugger connects to the process), like so:

$ java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -Xms1024M -Xmx1024M -XX:MaxPermSize=256m -jar start.jar

  1. right-click mifos-server-workspace, Debug As > Debug Configurations, Remote Java Application, New Launch Configuration, Debug. (We're using the mifos-server-workspace just because that has the most complete classpath, with Jetty on it as well, and this helps for pre-configured source code look-up in the Debugger. Eclipse doesn't actually use any code from that project's classpath of course.)

...