FileDocCategorySizeDatePackage
RentABikeAssembler.javaAPI DocExample401Fri Apr 22 11:20:24 BST 2005com.springbook

RentABikeAssembler.java

package com.springbook;

import org.springframework.context.support.ClassPathXmlApplicationContext;


public class RentABikeAssembler {
   public static final void main(String[] args) {
      ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("RentABike-context.xml");
      CommandLineView clv = (CommandLineView)ctx.getBean("commandLineView");
      clv.printAllBikes();
   }
}