unoinpiu's blog
Java back in the 1930s.
Consider the following interface:
public interface X
{
public void doSomething()
}
and two implementations:
public class Good implements X
{
public void doSomething() { ; }
}
public class Bad implements X
{
public void doSomething() { throw new RuntimeException(""); }
}
Let's have a convenience class ExcpnChecker with just one static meth
Mutual Exclusion In JavaSpaces
Why is javaspaces technology not as successful as it should be ?
Can XML capture the Dependency Injection pattern ?
Xml is a great language for describing structured data. But it works less well when people use it to describe control flow.
A Dynamic Language For Bean Factory
A Dynamic Language For BeanFactory.
One of the things I like the most about the Spring-IOC-container is its non-intrusiveness.





