Package org.springside.examples.showcase.service

Examples of org.springside.examples.showcase.service.AccountService


  /**
   * 定时打印当前用户数到日志.
   */
  @Override
  protected void executeInternal(JobExecutionContext ctx) throws JobExecutionException {
    AccountService accountService = applicationContext.getBean(AccountService.class);
    Map config = (Map) applicationContext.getBean("timerJobConfig");

    long userCount = accountService.getUserCount();
    String nodeName = (String) config.get("nodeName");

    logger.info("There are {} user in database, on node {}.", userCount, nodeName);
  }
View Full Code Here

TOP

Related Classes of org.springside.examples.showcase.service.AccountService

Copyright © 2018 www.massapicom. 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.