Package org.zkoss.spring.init

Source Code of org.zkoss.spring.init.CoreWebAppInit

/* CoreWebAppInit.java

{{IS_NOTE
  Purpose:
   
  Description:
   
  History:
    Jan 16, 2009 2:57:10 PM, Created by henrichen
}}IS_NOTE

Copyright (C) 2009 Potix Corporation. All Rights Reserved.

{{IS_RIGHT
  This program is distributed under GPL Version 2.0 in the hope that
  it will be useful, but WITHOUT ANY WARRANTY.
}}IS_RIGHT
*/

package org.zkoss.spring.init;

import org.zkoss.lang.Library;
import org.zkoss.spring.bean.ZkSpringUiFactory;
import org.zkoss.zk.ui.WebApp;
import org.zkoss.zk.ui.sys.WebAppCtrl;
import org.zkoss.zk.ui.util.Configuration;

/**
* Automatically disable ZK event thread mechanism, install a ZK Spring UiFactory, and register spring core related variable resolver..
* @author henrichen
* @see metainfo/zk/config.xml
* @since 3.0
*/
public class CoreWebAppInit implements org.zkoss.zk.ui.util.WebAppInit {
  private static String RESOLVER_CLASS = org.zkoss.spring.DelegatingVariableResolver.RESOLVER_CLASS;
  private static String CORE_RESOLVER = "org.zkoss.spring.init.CoreVariableResolver";
  public void init(WebApp wapp) throws Exception {
    String classes = Library.getProperty(RESOLVER_CLASS);
    if (classes == null) {
      Library.setProperty(RESOLVER_CLASS, CORE_RESOLVER);
    } else {
      Library.setProperty(RESOLVER_CLASS, classes + ","+ CORE_RESOLVER);
    }
    final Configuration conf = wapp.getConfiguration();
    //If user does not give UiFactoryClass in zk.xml
    if (conf.getUiFactoryClass() == null) {
      //<disable-event-thread/>
      conf.enableEventThread(false);
      //<ui-factory-class>org.zkoss.spring.bean.ZkSpringUiFactory</ui-factory-class>
      try {
        ((WebAppCtrl) wapp).setUiFactory(new ZkSpringUiFactory());
      } catch (AbstractMethodError ex) {
        //ignore
      }
    }
   
  }
 
 

}
TOP

Related Classes of org.zkoss.spring.init.CoreWebAppInit

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.