Tagged Questions
2
votes
2answers
164 views
MVC: View-Controller Interaction
I have a Java application that I am implementing following the MVC pattern.
I want to have a window (view) that contains a form which allows the user to add several text fields. There will also be a ...
1
vote
1answer
102 views
MVC, Java Design Pratices, and Flaws of java.util.Observable and java.util.Observer
I am planning learning Model-View-Controller (MVC) development using Java. While reading I came across a post which mentions java.util.Observer and java.util.Observable for MVC development.
As I ...
2
votes
1answer
127 views
Package conventions for MVC app [closed]
Which (if either) of the below is the more conventional/acceptable way to structure packages in a J2EE app? I'm trying to follow an MVC pattern as much as possible.
foo.bar.users
...
3
votes
1answer
354 views
Opensource showcase for MVC in Java Swing
I've allready created small desktop CRUD applications using Java/Swing. In hindsight I'm not quite sure if the overall design of these applications is good. I've also done some reading on MVC and ...
0
votes
3answers
228 views
Are there any tutorials available like NerdDinner but for Java? [closed]
I found the NerdDinner tutorial really helped me teach others who knew basic C#/.NET programming but had no web programming or MVC experience. The main things I found that made it easy for those ...
1
vote
1answer
142 views
Difference between Controller and Dispatcher in MVC for web frameworks?
In MVC applied to WSGI or Java EE, is the Servlet a controller, dispatcher, or both? I think I've seen system diagrams where the controller and the dispatcher are different. Could the controller ...
3
votes
2answers
555 views
How to completely decouple Model from View/Controller in Java Swing
Is there a collection of commonly-agreed-upon design guidelines for separating the Model classes from the View/Controller classes in a Java Swing app? I'm not so concerned that the View/Controller ...
2
votes
1answer
226 views
J2EE: Appropriate use of Spring/Hibernate for a project
Hey guys, my company is insisting that I learn more about Hibernate and Spring for some other projects that we have. (My company uses Java and Perl)
Right now they have me working with Perl/MySQL.
I ...
13
votes
4answers
790 views
Explain Model View Controller
My experience with developing dynamic websites is limited mostly to Java servlets. I've used Tomcat to develop various Java servlets, and I wouldn't hesitate to say that I'm reasonably proficient ...
4
votes
1answer
219 views
MVC for our application?
There are some issues about how to manage our program designs and programming styles. I was assigned to find a solution to write reusable code - though, the programming team does not follow the rules.
...