Search Results

2
votes
5answers
561 views

Java + MS SQL Server - a viable solution?

I'm going to start a new project - rewriting an existing system (PHP + SQL Server) from scratch because of some very serious limitations by design. We have some quite good knowledge of SQL Server ( …
1
vote

What’s your “best practice” for the first Java EE Spring project?

Spring is also very much about unit testing and therefore testability of your classes. That basically means thinking about modularization, separation of concerns, referencing a class through interf …
2
votes

Template Engines for Spring Framework

I would also like to add that your choice of template engine depends on the type of the output as well. If you know that your app will only have HTML output, I would suggest to stick with the stand …
1
vote

Programming against interfaces: Do you write interfaces for all your domain classes?

I think that the main reason for programming against interfaces is testability. Hence, for the domain objects - just stick to POJOs or POC#Os :) etc., i.e., just keep your classes from adding any s …
0
votes

birt in a desktop application

Yes, it is possible. Here is some general description. I've used Birt in server environment though as far as I know there's a …
1
vote

AJAX/jsp/HTML vs Applets

Java applets ARE solid, stable, supported technology, even at the end of the year 2008. There are many things that could be better accomplished by using applets instead of AJAX or Flash/Flex - for …