免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1017 | 回复: 0
打印 上一主题 下一主题

Appfuse2-CreateManager [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-16 10:56 |只看该作者 |倒序浏览

1.创建一个新的运行JUnit测试的ManagerTest [#1]
  在test/service/**/service目录下创建PersonManagerTest
2.创建一个新的与DAO通讯的Manager[#2]
  在src/service/**/service目录创建一个PersonManager.java接口来指定基本的CRUD操作
  package org.appfuse.service;
import org.appfuse.model.Person;
import org.appfuse.dao.PersonDao;
public interface PersonManager {
    public void setPersonDao(PersonDao dao);
    public Person getPerson(String id);
    public void savePerson(Person person);
    public void removePerson(String id);
}
创建一个PersonManagerImpl类来实现PersonManager中的方法,为此,在src/service/**/service/impl创建一个PersonManagerImpl.java类,他必须扩展BaseManage并且实现PersonManager。
package org.appfuse.service.impl;
import org.appfuse.model.Person;
import org.appfuse.dao.PersonDao;
import org.appfuse.service.PersonManager;
public class PersonManagerImpl extends BaseManager implements PersonManager {
    private PersonDao dao;
    public void setPersonDao(PersonDao dao) {
        this.dao = dao;
    }
    public Person getPerson(String id) {
        return dao.getPerson(Long.valueOf(id));
    }
    public void savePerson(Person person) {
        dao.savePerson(person);
    }
    public void removePerson(String id) {
        dao.removePerson(Long.valueOf(id));
    }
}
3.为这个Manager和事务配置Spring[#3]
为了通知Spring我们的PersonManager接口和它的实现类,打开src/service/**/service/applicationContext-service.xml,你会看到注释掉的关于"personManager"的定义,去掉注释,或者直接在文件末尾添加:
        
            
        
     
4.运行ManagerTest[#4]
  ant test-service -Dtestcase=PersonManager


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/8862/showart_113300.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP