千山鸟飞绝 万径人踪灭
勤练内功,不断实践招数。争取早日成为武林高手

public interface IPersonService {

 public abstract void Save();

}



public class PersonDaoBean implements IPersonDao {

 
 public void add(){
  System.out.println("这是personDaoBean的Add()方法");
 }
}


public class PersonServiceBean implements IPersonService {

 private IPersonDao iPersonDao;
 
 public IPersonDao getIPersonDao() {
  return iPersonDao;
 }

 public void setIPersonDao(IPersonDao personDao) {
  iPersonDao = personDao;
 }

 public void Save(){
  iPersonDao.add();
 }
 
 
}




<bean id="personDaoBean" class="cn.itcast.dao.impl.PersonDaoBean"></bean>
 <bean id="personService"
  class="cn.itcast.service.impl.PersonServiceBean">
  <property name="IPersonDao" ref="personDaoBean"></property>
  </bean>
  

public void instanceSpring() {
  ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(
    "beans.xml");
  IPersonService ipersonService = (IPersonService) ctx
    .getBean("personService");
  ipersonService.Save();
  ctx.close();
  // ctx.registerShutdownHook();

 }



输出:这是personDaoBean的Add()方法
posted on 2009-08-26 11:40 笑口常开、财源滚滚来! 阅读(191) 评论(0)  编辑  收藏 所属分类: spring学习

只有注册用户登录后才能发表评论。


网站导航: