zoukankan      html  css  js  c++  java
  • 不加载,手动实例化Service

    //调用方法
    private static IEntityService entityService=(IEntityService) BeanService.getBean("entityService");

     

    //BeanService里面的方法
    private static Map<String, Object> beans;
    static {
      beans = new HashMap<String, Object>();
    }
    public static Object getBean(String beanName) {
      if (beans.containsKey(beanName) && beans.get(beanName) != null) {
        return beans.get(beanName);
      }
      Object bean = BeanUtil.getBean(beanName);
      if (bean != null) {
        beans.put(beanName, bean);
      }
      return bean;
    }

     


     //BeanUtil里面的方法 

    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    import org.springframework.util.StringUtils;
    public class BeanUtil {
      private static ClassPathXmlApplicationContext context;
      private static String flagInit = "0";
      /**
      * 获取spring上下文
      * 
      * @return 上下文容器
      */
      private static ApplicationContext getContext() {
      synchronized (flagInit) {
        if ("0".equals(flagInit)) {
          if (context == null) {
            ClassPathXmlApplicationContext context1 = new ClassPathXmlApplicationContext("spring-config.xml", "spring-mvc.xml");//分别是Spring和MVC的配置文件
            context = context1;
            context.start();
          }
          flagInit = "1";
        }
      }
      return context;
    
    }
    
    static {
    getContext();
    }



    /**
    * 获取bean
    * 
    * @param beanName
    * @return
    */
    public static Object getBean(String beanName) {
      if (StringUtils.isEmpty(beanName)) {
        return null;
      }
      if (getContext() == null) {
        return null;
      }
      return getContext().getBean(beanName);
      }
    }
  • 相关阅读:
    C#编写功能让你的系统导入注册表文件时不提示
    登陆框提示历史记录
    C# 操作系统防火墙
    C# 制作Java +Mysql+Tomcat 环境安装程序,一键式安装 (续集Tomcat 配置)
    C# 修饰符你记住了吗?
    C# 实现设置系统环境变量设置
    showModalDialog使用例子,父窗口向子窗口传递值
    C#后台无刷新页面弹出alert方法
    VS2008 无法启动调试.未安装Silverlight托管调试包 .
    在GridView中使用FindControl .
  • 原文地址:https://www.cnblogs.com/IceBlueBrother/p/8422852.html
Copyright © 2011-2022 走看看