views:

540

answers:

4

Hi,

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

A: 

How about the Spring MVC framework?
http://www.springsource.org/

darren
No I cannot use Spring, looking for a custom build. any suggestions on that, thinking of implementing my own Front Controller!!
I meant look at the sourcecode used by Spring. They implement the Front Controller pattern as part of the MVC package.
darren
Spring is too big to explore :)
+1  A: 

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

labratmatt
+2  A: 

To start, create a Servlet which listens on a certain url-pattern, e.g. /pages/*. Implement the service() method to lookup the action associated with the request method (GET, POST, etc) and pathinfo (the URL part after the servlet's url-pattern).

Basic example:

protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    View view = new View(request, response);
    Action action = ActionFactory.getAction(request);
    action.execute(view);
    view.navigate();
}

The Action interface should represent an unit of work. You can implement it to do the necessary business logic:

public interface Action {
    void execute(View view);
}

The ActionFactory should maintain the classes implementing Action in sort of Map<String, Action> where the String key represents less or more a combination of the request method and pathinfo. You could then get an Action as follows:

public static Action getAction(HttpServletRequest request) {
    return actions.get(request.getMethod() + request.getPathInfo());
}

The View should represent the request scoped context which the Action can work with. In the navigate() you could forward the request to a JSP for display:

public void navigate() {
    request.getRequestDispatcher("/WEB-INF" + request.getPathInfo() + ".jsp").forward(request, response);
}

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.

BalusC
When I read these documentation about Spring MVC, it always talks about Servlet engine to be Tomcat. Does it make any different if my servlet engine is Glassfish? Does glassfish read the content of web.xml?
Harry Pham
@Harry: Spring is a bit anti-Sun.
BalusC
ohhh god, sad news
Harry Pham
@Harry: I didn't mean to say that Spring won't work on GF. It will work as good.
BalusC
A: 

I'm trying to deploy petstore in Java EE 5, but could not.

I'm using the deployment given in the Java EE 5 Application page. Do I've to do anything else as well? I'm new to Glass Fish, need help/suggestions in getting the petstore up, so that I can understand the FrontController & other MVC things.

This problem/question is unrelated to your initial question. Please post a new question. Do not post questions or comments as answers :)
BalusC