strategy « SQL « Java Database Q&A





1. Deciding on a strategy for paginating Book listings without SQL    stackoverflow.com

I have an ArrayList of Books pulled from different Merchants and sorted in Java, depending on user preferences, according to price or customer reviews:

List<Book> books = new ArrayList<Book>();
This requires me to ...

2. Strategy Design Pattern -- *dynamic* !    stackoverflow.com

My application will have different strategies for my objects. What's the best way of implementing that? I would really love the case when we can make strategy classes implementation dynamically loaded ...