I'm thinking of implementing Front Controller in my J2EE application. Could you please suggest the same with few links (with source code examples) & any standards to follow?
Best regards
|
I'm thinking of implementing Front Controller in my J2EE application. Could you please suggest the same with few links (with source code examples) & any standards to follow? Best regards |
|||||||
|
|
To start, create a Basic example:
The
The
The
That should get you started (note that I left all obvious checks such as null pointers away to make the examples less cluttered, that's up to you now). There is however more to take account with in the whole story, such as validation, conversion, event handling, input value mappings, localization, dependency injection, etcetera. That's all with all quite a work. The more decent MVC frameworks takes most of this all into account, such as Sun JSF, Apache Struts, Spring MVC, Stripes, etcetera. If you have never done any of them, then I strongly recommend to do so before homegrowing one, otherwise you would end up with a waste of time. |
|||||||||||
|
|
The web is full of mature java web frameworks. I can't see a reason to create a new one with two exceptions: 1. You have some very non-standard environment/flow and need something very, very specific to your needs. 2. You simply want to go through the exercise of creating a framework to learn about the ins and outs of httpservlet development. JSR 154 defines the servlet specs. Find it here: http://jcp.org/en/jsr/detail?id=154 Spring is one of the current popular frameworks and the one that works for me. Struts was one of the first very popular frameworks that has started to decline in popularity. Find a good list of frameworks along with discussion at http://java-source.net/open-source/web-frameworks |
||||
|
|
|
How about the Spring MVC framework? |
|||||||||
|