Tagged Questions
20
votes
15answers
18k views
Best java mvc framework implementation for web apps [closed]
What is the best MVC framework inmplementation in java?
It has to be:
lightweight
KISS philosophy
be able to make changes to the views without
compile
minimalistic; few lines of
code
6
votes
5answers
270 views
When KISS and DRY collide
I'm an obsessive follower of the DRY and KISS principles but last week I had a case where both seem to contradict each other:
For an application I was doing, I had to implement a loop for times which ...
1
vote
6answers
139 views
Can I avoid repeating myself in this situation (Java)
if (openFile == null) {
new AppFileDialog().chooseFile("Save", appFrame);
}
if (openFile == null) {
return;
}
Here I need to check to see if the user has already chosen a file. ...