Browse > Home /

| Subcribe via RSS

Recommended reading list: Java EE and WebSphere Application Server

September 29th, 2009 | No Comments | Posted in IBM

This list of recommended reading connects you to documents that contain essential information that practitioners should know and understand before diving into Java™ EE application design and implementation using IBM® WebSphere® Application Server.

This list is intended for anyone interested in using or learning more about WebSphere Application Server.

Continue reading

  • Share/Bookmark
Tags: , ,

Check exceptions vs unchecked exceptions

September 18th, 2009 | 1 Comment | Posted in J2EE, Java

Another interesting article about checked-exceptions. I know this is not new, but every time a new project starts, I’m having the same discussion about checked-exceptions.

Once upon a time Java created an experiment called checked-exceptions, you know you have to declare exceptions or catch them. Since that time no other language (I know of) has decided to copy this idea, but somehow the Java developers are in love with checked exceptions…

Continue reading…

  • Share/Bookmark
Tags: ,

IBM Monitoring and Diagnostic Tools for Java – Health Center

May 27th, 2009 | No Comments | Posted in IBM, Java

Health Center is a low-processor and memory usage diagnostic tool for monitoring the status of a running IBM Java Virtual Machine (JVM). It provides live information and recommendations in each of the following areas:

  • Classes – information about classes being loaded
  • Environment – details of the configuration and system of the monitored application
  • Garbage collection – information about the Java heap and pause times
  • Locking – information about contention on inflated locks
  • Profiling – sampling profile of Java methods including call paths

Read more

  • Share/Bookmark
Tags: , , , , ,

James Taylor and his thoughs on IBM and ILog

January 30th, 2009 | No Comments | Posted in ILog, Java

Recently James Taylor wrote some articles about his thoughs on IBM and ILog.

Read his thoughs in the following articles …

  1. IBM and ILOG – Simpler, more agile processes
  2. IBM and ILOG – Java, COBOL AND .Net
  3. IBM and ILOG – Thoughts on Jerry Cuomo’s WebSphere Top 10
  4. IBM and ILOG for a smarter planet
  5. IBM and ILOG – What Else?
  • Share/Bookmark
Tags: , ,

Fast development with OpenXava

January 26th, 2009 | 1 Comment | Posted in Java

OpenXava is a productive way for creating AJAX Enterprise Applications with Java. Indeed, it’s faster developing with OpenXava than with Ruby On Rails, Spring MVC, or any other MVC framework. This is because in OpenXava you only have to write the Model. The Controllers are reused, and the View are generated automatically.

Read more

  • Share/Bookmark
Tags: ,

VisualVM All-in-one Java Troubleshooting Tool

January 15th, 2009 | No Comments | Posted in Tools
VisualVM is a visual tool integrating several commandline JDK tools and lightweight profiling capabilities. Designed for both production and development time use, it further enhances the capability of monitoring and performance analysis for the Java SE platform
localremoteapps
  • Share/Bookmark
Tags: ,

The Eclipse Memory Analyzer

January 8th, 2009 | No Comments | Posted in Java

The Eclipse Memory Analyzer is a fast and feature-rich Java heap analyzer that helps you find memory leaks and reduce memory consumption.

The Memory Analyzer was developed to analyze productive heap dumps with hundreds of millions of objects. Once the heap dump is parsed, you can re-open it instantly, immediately get the retained size of single objects and quickly approximate the retained size of a set of objects. The reference chain to the Garbage Collection Roots then details why the object is not garbage collected.

Using these features, a report automatically extracts leak suspects. It includes details about the objects accumulated, the path to the GC Roots, plus general information like system properties.

Some screenshots:

1. Overview

Overview Screenshot

2. Histogram

Histogram Screenshot

3. Dominator tree

Dominator Tree Screenshot

4. Path to GC Roots

Path to GC Roots Screenshot

5. Dominator Tree Grouped by Class Loader

Dominator Tree Grouped by Class Loader Screenshot

Product home

  • Share/Bookmark
Tags: ,

ProGuard Version 4.3 – Free Optimizer and Obfuscator

December 19th, 2008 | No Comments | Posted in Java

free Java class file shrinker, optimizer, obfuscator, and preverifier.

ProGuard is distributed under the terms of the GPL. You can download the program, documentation, and examples from proguard.sourceforge.net.

  • Share/Bookmark
Tags: ,

Dependency injection with Guice

December 10th, 2008 | No Comments | Posted in Java

Guice is Google’s open source dependency injection framework for Java™ development. It enables better testing and modularity by taking away the pain of writing your own factories. Nicholas Lesiecki offers a tour of the most important Guice concepts that will leave you ready to Guice up your applications.

Read the full article here

  • Share/Bookmark
Tags: ,