To view our full selection of recent Eclipse stories click here
Over the last several weeks I've received a few questions about remote
debugging with Eclipse. I posted about this on my other blog back in February
here but with not enough info for others to follow.
If you go look at that blog entry you will see that I looked into 'in
eclipse' debugging but did not find it satisfactory.
So without further ado here is how I use Tomcat, JBoss, and Eclipse to build
and debug applications.
Whichever platform you are using (Tomcat or JBoss) you need to start them
with the JPDA debugging enabled. For Tomcat this is very easy. In the
$CATALINA_HOME/bin directory there is a script catalina.sh. If you provide
the arguments 'jpda start' tomcat will startup and listen on port 8000 for a
debugger connection.
With JBoss its only slightly more complicated. Basically you need to speci... (more)
To view our full selection of recent Eclipse stories click here
On June 1, 2004, the Eclipse Board of Directors named Mike Milinkovich the
executive director of the Eclipse Foundation. The hunt had been on since
Eclipse became an independent entity earlier this year. Here JDJ's Eclipse
editor, Bill Dudney, talks exclusively with Milinkovich about the direction
he wants to take Eclipse and what his vision is for the community.
Mike Milinkovich comes to the Eclipse Foundation from Oracle, where he served
as the vice president of OracleAS Technical Services. Prior to Oracle he was
at... (more)
JDJ's Bill Dudney (pictured) writes: With the popularity of Object Relational
Mapping tools like Hibernate and Cayenne, developers are more often than
other giving control of some of their code to models. Will this help raise
MDA into the mainstream? Will MDA take its hoped-for place as the next level
of abstraction for developers?
What about MDA
Model Driven Architecture, also known as MDA, started in late 2000 with a
white paper. Basically the idea is that we define the software we want to
build in sophisticated models that capture the detail of the application.
Then from these... (more)
So while reviewing the release notes for Java on Leopard I noticed a couple
of interesting bits. First they included junit 4.1 and maven 2.0.6 in the
mix, which is great (except that maven 2.06 had some serious bugs with
transitive dependencies). mvn is now on your path so you don't have to
download to get maven on your leopard box. Second they really cleaned up the
awt/swt issues in this release so we can use stuff like Batik in Eclipse now.
They also made the default rendering pipeline the Sun pipeline. Over all a
ton of good work. JDK 6 and hopefully the full open source stack... (more)
Read Bill Dudney Looks at Eclipse M8 Close-Up Read Remote Debugging Tomcat &
JBoss Apps with Eclipse
This column contains an excerpt from one of the refactoring chapters in my
book Eclipse 3 Live. The book will eventually contain similar sections for
all the refactorings available in Eclipse. Change Method SignatureThis
refactoring allows you to change the signature of an existing method by
changing any of the aspects of the method that make its signature. You can
change the access rights (public, private, etc.), you can change the name as
well as add or remove parameters, and yo... (more)