2010-12-31 13 views
0
public class SpringHelloWorld extends com.itmill.toolkit.Application { 

    public void init() { 
     final Window main = new Window("Hello window"); 
     setMainWindow(main); 

     SpringContextHelper helper = new SpringContextHelper(this); 
     MyBeanInterface bean = (MyBeanInterface) 
       helper.getBean("myBean"); 
     main.addComponent(new Label(bean.myMethod())); 
    } 
} 

http://qastegiano.blogspot.com/2008/01/itmill-toolkit-5-spring.htmlここでbeanInterfaceは何を参照していますか?

それは、カスタムクラスであるか、我々はそこに何かを定義する必要があります。

答えて

2

あなたはそこに何かを定義する必要があります。これは、BeanファクトリからBeanを取得する方法の例です。あなたの役に立つクラスを代用してください。

関連する問題