About Attila Mihaly Balazs
List/Grid Author Archives Subscribe to the RSS feed of Attila Mihaly Balazs

Java Management Extensions
What is JMX? The Java Management Extensions (JMX) is an API used for managing or monitoring various resources such as applications, devices, services and of course the JVM. Developed ...

Java Enum puzzler
Let’s suppose we have the following code:enum Case { CASE_ONE, CASE_TWO, CASE_THREE; private static final int counter; private int valueDependsOnCounter; ...

Automaton implementation in Java
This post will address the problem of implementing finite states machines into java. If you don’t know what FSM are or where can be used you may be keen on reading this, this and ...

Debugging the JVM
In some (rare) cases you might find yourself in the situation that you managed to crash the JVM itself. I most recently managed this by setting the name of a ThreadGroup to null. In ...

Devoxx Day 1
Participating at Devoxx brought me enough motivation to post my first blog entry. I am for the first time here and I am really impressed by how it is organized. There are a record number ...

Integrating Maven with Ivy
The problem: you have some resources in an Ivy repository (and only there) which you would like to use in a project based on Maven. Possible solutions:Migrate the repository to Maven ...


