Package com.qwf.school.mis.student.service

Examples of com.qwf.school.mis.student.service.StudentService


  }

  public void start(BundleContext bundleContext) throws Exception {
    Activator.context = bundleContext;
    // 从IoC容器中得到StudentService对象
    StudentService studentService = IocContext.getBean(
        bundleContext.getBundle(), StudentService.class);
    // 如果数据表检查有问题,则修复相关数据表
    if (!studentService.checkStudentTables()) {
      studentService.repairStudentTables();
      log.info("已修复学生相关数据表!");
    }
    Map<String, String> subMenuMap = new HashMap<String, String>();
    String contextPath = WebContext.getServletContext().getContextPath();
    subMenuMap.put("查询", contextPath
View Full Code Here

TOP

Related Classes of com.qwf.school.mis.student.service.StudentService

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.