<%@ include file="/common/taglibs.jsp"%> <%@ taglib uri="http://displaytag.sf.net/el" prefix="display-el" %> <%@ page import="java.util.Map, javax.servlet.jsp.jstl.sql.Result, net.sf.navigator.menu.MenuComponent, net.sf.navigator.menu.MenuRepository"%> Dynamic, Database-driven Menu " /> " />

Database Driven Menu

This page is designed to show how easy it is create menus from a couple of database tables. I'm using JSTL's SQL Tags because they're easy and you can see all the code that's needed in this one page. This example creates tables, populates them and then extracts the values to build a menu. This logic should probably go into a Servlet, Struts Action or a Servlet Filter to get the logic of who sees what out of the view. But this works, so feel free to copy and/or improve.

DROP TABLE IF EXISTS menu_item CREATE TABLE menu_item ( id BIGINT not null, parent_name VARCHAR(30), name VARCHAR(30), title VARCHAR(30), description VARCHAR(50), location VARCHAR(255), target VARCHAR(10), onclick VARCHAR(100), onmouseover VARCHAR(100), onmouseout VARCHAR(100), image VARCHAR(50), altImage VARCHAR(30), tooltip VARCHAR(100), roles VARCHAR(100), page VARCHAR(255), width VARCHAR(5), height VARCHAR(5), forward VARCHAR(50), action VARCHAR(50), primary key (id) ) INSERT INTO menu_item (id, name, title) VALUES (1,'DatabaseMenu','Database Menu') INSERT INTO menu_item (id, parent_name, name, title, location) VALUES (2,'DatabaseMenu','Yahoo','Yahoo Mail','http://mail.yahoo.com') INSERT INTO menu_item (id, parent_name, name, title, location) VALUES (3,'DatabaseMenu','JavaBlogs','JavaBlogs','http://javablogs.com') INSERT INTO menu_item (id, name, title, location) VALUES (4,'StandaloneMenu','Standalone Menu','http://raibledesigns.com') SELECT * FROM menu_item order by id;

DONE: successfully created menu_items table and added the following entries.

If you view the source of the code above - you can see that it just creates a table and inserts some data. This table will be dropped, re-created and populated every time this page is loaded.

<sql:transaction dataSource="jdbc/appfuse">

    <sql:update>
        DROP TABLE IF EXISTS menu_item
    </sql:update>
    <sql:update>
        CREATE TABLE menu_item (
           id BIGINT not null,
           parent_name VARCHAR(30),
           name VARCHAR(30),
           title VARCHAR(30),
           description VARCHAR(50),
           location VARCHAR(255),
           target VARCHAR(10),
           onclick VARCHAR(100),
           onmouseover VARCHAR(100),
           onmouseout VARCHAR(100),
           image VARCHAR(50),
           altImage VARCHAR(30),
           tooltip VARCHAR(100),
           roles VARCHAR(100),
           page VARCHAR(255),
           width VARCHAR(5),
           height VARCHAR(5),
           forward VARCHAR(50),
           action VARCHAR(50),
           primary key (id)
        )
    </sql:update>

    <sql:update var="updateCount">
        INSERT INTO menu_item
            (id, name, title)
        VALUES
            (1,'DatabaseMenu','Database Menu')
    </sql:update>
    <sql:update var="updateCount">
        INSERT INTO menu_item
            (id, parent_name, name, title, location)
        VALUES
            (2,'DatabaseMenu','Yahoo','Yahoo Mail','http://mail.yahoo.com')
    </sql:update>
    <sql:update var="updateCount">
        INSERT INTO menu_item
            (id, parent_name, name, title, location)
        VALUES
            (3,'DatabaseMenu','JavaBlogs','JavaBlogs','http://javablogs.com')
    </sql:update>
    <sql:update var="updateCount">
        INSERT INTO menu_item
            (id, name, title, location)
        VALUES
            (4,'StandaloneMenu','Standalone Menu','http://raibledesigns.com')
    </sql:update>
    <sql:query var="menus">
        SELECT * FROM menu_item order by id;
    </sql:query>

</sql:transaction>

    <p>
        <strong>DONE:</strong> successfully created menu_items table and
        added the following entries.
    </p>

    <display-el:table name="${menus.rows}" class="list" style="width: 600px">
        <display-el:column property="id"/>
        <display-el:column property="name"/>
        <display-el:column property="parent_name" title="Parent Name"/>
        <display-el:column property="title"/>
        <display-el:column property="location"/>
    </display-el:table>

Now let's build a Menu definition with this data. Below is the Java scriplet code that is used to build this menu.

In a well-architected application, you might pull the data from the database using Hibernate, iBATIS, or JDBC. You could then use a Business Delegate for your who-sees-what logic and call the Delegate from a ServletFilter, a ServletContextListener or a Login Servlet.

<% // I had issues using the existing repository - creating a new one // seems to solve the problem. If you figure out how to use the default // Repository and keep your menus from duplicating themselves - please // let me know! MenuRepository repository = new MenuRepository(); // Get the repository from the application scope - and copy the // DisplayerMappings from it. MenuRepository defaultRepository = (MenuRepository) application.getAttribute(MenuRepository.MENU_REPOSITORY_KEY); repository.setDisplayers(defaultRepository.getDisplayers()); Result result = (Result) pageContext.getAttribute("menus"); Map[] rows = result.getRows(); for (int i=0; i < rows.length; i++) { MenuComponent mc = new MenuComponent(); Map row = rows[i]; String name = (String) row.get("name"); mc.setName(name); String parent = (String) row.get("parent_name"); System.out.println(name + ", parent is: " + parent); if (parent != null) { MenuComponent parentMenu = repository.getMenu(parent); if (parentMenu == null) { System.out.println("parentMenu '" + parent + "' doesn't exist!"); // create a temporary parentMenu parentMenu = new MenuComponent(); parentMenu.setName(parent); repository.addMenu(parentMenu); } mc.setParent(parentMenu); } String title = (String) row.get("title"); mc.setTitle(title); String location = (String) row.get("location"); mc.setLocation(location); repository.addMenu(mc); } pageContext.setAttribute("repository", repository); %>

---- begin scriplet code ----

// I had issues using the existing repository - creating a new one
// seems to solve the problem.  If you figure out how to use the default
// Repository and keep your menus from duplicating themselves - please
// let me know!

MenuRepository repository = new MenuRepository();
// Get the repository from the application scope - and copy the
// DisplayerMappings from it.
MenuRepository defaultRepository = (MenuRepository)
        application.getAttribute(MenuRepository.MENU_REPOSITORY_KEY);
repository.setDisplayers(defaultRepository.getDisplayers());

Result result = (ResultpageContext.getAttribute("menus");
Map[] rows = result.getRows();
for (int i=0; i < rows.length; i++) {
    MenuComponent mc = new MenuComponent();
    Map row = rows[i];
    String name = (Stringrow.get("name");
    mc.setName(name);
    String parent = (Stringrow.get("parent_name");
    System.out.println(name + ", parent is: " + parent);
    if (parent != null) {
        MenuComponent parentMenu = repository.getMenu(parent);
        if (parentMenu == null) {
            System.out.println("parentMenu '" + parent + "' doesn't exist!");
            // create a temporary parentMenu
            parentMenu = new MenuComponent();
            parentMenu.setName(parent);
            repository.addMenu(parentMenu);
        }

        mc.setParent(parentMenu);
    }
    String title = (Stringrow.get("title");
    mc.setTitle(title);
    String location = (Stringrow.get("location");
    mc.setLocation(location);
    repository.addMenu(mc);
}
pageContext.setAttribute("repository", repository);

---- end scriplet code ----

Now that we've built our menu repository, we can easily display it with the following code:

<menu:useMenuDisplayer name="ListMenu" repository="repository">
    <menu:displayMenu name="DatabaseMenu"/>
    <menu:displayMenu name="StandaloneMenu"/>
</menu:useMenuDisplayer>

Which results in: