Thursday, September 16, 2010

What is the difference between a service locator pattern and an inversion of control pattern?

http://freejavaclass.com/articles/j2ee/designpattern/servicelocator_ioc_pattern_difference.jsp

No comments:

Post a Comment

How can instantiate Java interface without implementing.

public interface Foo { String method(); } public class Claaa {    public static void main(String[] args) {     Foo fooByIC...