Click here to Skip to main content
15,893,594 members
Articles / Programming Languages / Java / Java SE / J2EE

Modular J2EE, Using Spring DM, Zk and EclipseLink

Rate me:
Please Sign up or sign in to vote.
4.92/5 (9 votes)
21 Apr 2011CPOL15 min read 53.1K   8  
This article describes how to create a basic modular Java Enterprise Application, by using these Open Source frameworks
package com.cp.adrabi.jln.web.todo.controllers;

import com.cp.adrabi.jln.todo.services.TodoService;
import com.cp.adrabi.web.controllers.BasicComposer;

/**
 * Base controller for all Todo controllers only
 * 
 * @author ADRABI Abderrahim (z3vil)
 *
 */
public abstract class ControllerBaseTodo extends BasicComposer
{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	protected TodoService service;

	public TodoService getService()
	{
		return service;
	}

	public void setService(TodoService service)
	{
		this.service = service;
	}

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Morocco Morocco
Adrabi!, Just another Ghost in the Shell =)

Comments and Discussions