Raible's Wiki
Raible Designs AppFuseHomepage- Korean - Chinese - Italian - Japanese QuickStart Guide User Guide Tutorials Other ApplicationsStruts ResumeSecurity Example Struts Menu
Set your name in
UserPreferences
Referenced by
JSPWiki v2.2.33
Hide Menu |
This is version 8.
It is not the current version, and thus it cannot be edited. Part II: Creating new Managers - A HowTo for creating Business Delegates that talk to the database tier (DAOs) and the web tier (Struts Actions). About this TutorialThis tutorial will show you how to create a Business Delegate class (and a JUnit) to talk to the DAO we created in Part I of this tutorial.In the context of AppFuse, this is called a Manager class. It's main responsibility is converting backend data (POJOs) into front-end data (Struts ActionForms). The main reason I even use Managers, rather than just calling the DAOs directly is testability. It's nice to be able to populate a Form manually (in the test) and call the DAO to persist it, and verify the database gets the proper results. The Business Delegate pattern from Sun says that these objects are usefull for de-coupling your presentation layer from your database layer. Managers should also be where you put any business logic for your application.
Let's get started on creating a new ManagerTest and Manager in AppFuse's architecture. Table of Contents
Create a new ManagerTest to run JUnit tests on the Manager [#1]Since we're continuing from Part I, let's create a JUnit test for the PersonManager. Create PersonManagerTest in the test/web/**/service directory. We'll want to test the same basic methods (get, save, remove) that our DAO has. This may seem redundant (why all the tests!), but these tests are GREAT to have 6 months down the road.
package org.appfuse.webapp.service; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.appfuse.webapp.form.PersonForm; public class PersonManagerTest extends BaseManagerTestCase { //~ Instance fields ======================================================== private PersonManager mgr = null; private Log log = LogFactory.getLog(PersonManagerTest.class); private PersonForm personForm; //~ Constructors =========================================================== public PersonManagerTest(String name) { super(name); } //~ Methods ================================================================ protected void setUp() throws Exception { super.setUp(); mgr = new PersonManagerImpl(conn); } protected void tearDown() throws Exception { super.tearDown(); mgr = null; } public static void main(String[] args) { junit.textui.TestRunner.run(PersonManagerTest.class); } } Create a new Manager to talk to the DAO [#2]Run the ManagerTest [#3]
|