Tomcat刚刚启动完毕,数据库的连接数1的问题解决

2024-02-21 19:18

本文主要是介绍Tomcat刚刚启动完毕,数据库的连接数1的问题解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

这个问题只有在用到spring的时候才会出现。

 

刚开始,Tomcat刚刚启动完毕,我的数据库连接就达到了50多个,我很纳闷,按照常理,Tomcat刚刚启动完毕,应该只是加载了web.xml中的一个applicationContext.xml,应该只有一个连接才对,为什么会这么多,后来找到原因了,因为连接的数量正好等于我的service的数量+1,而我的每个service都继承了一个BaseService,而BaseService中有这么个成员变量

private ApplicationContext SJBUtil = new ClassPathXmlApplicationContext( "classpath:applicationContext.xml");

 

我们都知道tomcat在加载applicationContext.xml,会将里面的所有bean创建一个实例,所以每一个实例都会创建一个新的ApplicationContext,当然也会创建一个数据库连接,后来我将private ApplicationContext SJBUtil = new ClassPathXmlApplicationContext( "classpath:applicationContext.xml");改成了private static  ApplicationContext SJBUtil = new ClassPathXmlApplicationContext( "classpath:applicationContext.xml");,这时候Tomcat刚刚启动完毕时,连接数是两个,我依然觉得这样不好,最佳的办法应该是直接从加载的web.xml中获取applicationContext.xml,方法如下:

首先新建一个类SJBInit.java,内容如下:

public class SJBInit {
 /**
  *
系统应用spring环境
  */
 private static ApplicationContext ctx;

 /**
  *
单实例对象
  */
 private static SJBInit instance = null;

    Vector temp = new Vector(50);

    /**
  *
构造函数
  */
 public SJBInit() {
  if (instance == null){
   instance = this;
  }
 }

 /**
  *
获得单实例对象
  *
  * @return
  */
 public static SJBInit getInstance() {
  if (instance == null)
   new SJBInit();
  return instance;
 }

 /**
  *
初始化Spring组件
  */
 public void init(Properties props) throws Exception {

  loadContextXML(props);

 }

 /**
  *
加载spring对象
  *
  * @param props
  */
 private void loadContextXML(Properties props) throws Exception{
  String path ="";
  /*LogFactory.getInstance().logRun(RunPriority.INFORMATIONAL,
    LogConstants.sysLogConstants.INT_SPRING_START,
    null
    );*/
  try {
   ServletContext servletContext = (ServletContext) props
     .get("APP_CONTEXT");
            if (servletContext != null)
    ctx = WebApplicationContextUtils
      .getRequiredWebApplicationContext(servletContext);
  }
 
  catch (Exception e) {
            e.printStackTrace();


        }
  if ((ctx == null) || (ctx.getBeanDefinitionNames().length == 0)) {

  }
 
 }

 /**
  *
得到spring的所有配置文件
  *
  * @param path
  * @return
  */
 private void setConfigFiles(String path) {

  File file = new File(path);
  if (file.isDirectory()) {
   File[] files = file.listFiles();
   for (int index = 0; index < files.length; index++) {
    String filePath = files[index].getPath();
    if (filePath.endsWith(".xml")) {
     this.temp.add(filePath);
    }
   }
  }
 }

 /**
  *
得到一个spring的配置对象
  *
  * @param name
  * @return
  */
 public Object getBean(String name) {
  if (ctx == null)
   return null;
  else
   return ctx.getBean(name);
 }

 
 /**
  *
获取单个信息
  *
  * @param key
  * @param object
  * @param request
  * @return
  */
 public static String getMessage(String key, Object[] object, Locale locale) {
  return ctx.getMessage(key, object, locale);
 }

}

然后创建InitServlet.java,内容如下:

public class InitServlet extends HttpServlet{
 
 static final long serialVersionUID = -1111516993124229949L;
 
 /**
  *
启动对象实例
  */
 private SJBInit sjbinit = SJBInit.getInstance();

 /**
  * servlet
初始化
  */
 public void init(ServletConfig config) throws ServletException {
 
  super.init(config);
  Properties props = new Properties();
  props.put("APP_CONTEXT", config.getServletContext());
  //
文件路径
  String prefix = getServletContext().getRealPath("/");
 
  // web
应用路径
  props.put("APP_PATH", prefix);
 
  try {
  
  sjbinit.init(props);
 
  }catch(Exception e){
  
  }
 }
}

然后在web.xml中配置

...

<servlet>
  <description>System init when start</description>
  <display-name>InitServlet</display-name>
  <servlet-name>InitServlet</servlet-name>
  <servlet-class>com.fone.platform.core.InitServlet</servlet-class>
  <load-on-startup>1</load-on-startup>
 </servlet>
 
 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>
   classpath:applicationContext.xml,
   classpath:applicationContext-*.xml
  </param-value>
 </context-param>
 <listener>
  <listener-class>
   org.springframework.web.context.ContextLoaderListener
  </listener-class>
 </listener>

.....

然后再创建类SJBUtil.java,内容如下:

public class SJBUtil {
 /**
  * sjb
管理类实例
  */
 private static SJBInit sjb = SJBInit.getInstance();

   
 /**
  *
得到一个系统配置 bean
  *
  * @param name bean
的配置名称
  * @return
如果系统没有加载返回 null
  */
 public static Object getBean(String name) {
  return sjb.getBean(name);
 }

}

然后在service类中通过SJBUtil.getBean("...");就可以获得spring中的dao类了

public UsersDAO getUsersDAO() {
  return (UsersDAO) SJBUtil.getBean(SJBNameConstants.DAO_USERS_BEAN_NAME);
 }

问题解决,最后Tomcat刚刚启动完毕,数据库连接数就是1

这篇关于Tomcat刚刚启动完毕,数据库的连接数1的问题解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/732793

相关文章

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

好题——hdu2522(小数问题:求1/n的第一个循环节)

好喜欢这题,第一次做小数问题,一开始真心没思路,然后参考了网上的一些资料。 知识点***********************************无限不循环小数即无理数,不能写作两整数之比*****************************(一开始没想到,小学没学好) 此题1/n肯定是一个有限循环小数,了解这些后就能做此题了。 按照除法的机制,用一个函数表示出来就可以了,代码如下

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

MySQL数据库宕机,启动不起来,教你一招搞定!

作者介绍:老苏,10余年DBA工作运维经验,擅长Oracle、MySQL、PG、Mongodb数据库运维(如安装迁移,性能优化、故障应急处理等)公众号:老苏畅谈运维欢迎关注本人公众号,更多精彩与您分享。 MySQL数据库宕机,数据页损坏问题,启动不起来,该如何排查和解决,本文将为你说明具体的排查过程。 查看MySQL error日志 查看 MySQL error日志,排查哪个表(表空间

springboot3打包成war包,用tomcat8启动

1、在pom中,将打包类型改为war <packaging>war</packaging> 2、pom中排除SpringBoot内置的Tomcat容器并添加Tomcat依赖,用于编译和测试,         *依赖时一定设置 scope 为 provided (相当于 tomcat 依赖只在本地运行和测试的时候有效,         打包的时候会排除这个依赖)<scope>provided

内核启动时减少log的方式

内核引导选项 内核引导选项大体上可以分为两类:一类与设备无关、另一类与设备有关。与设备有关的引导选项多如牛毛,需要你自己阅读内核中的相应驱动程序源码以获取其能够接受的引导选项。比如,如果你想知道可以向 AHA1542 SCSI 驱动程序传递哪些引导选项,那么就查看 drivers/scsi/aha1542.c 文件,一般在前面 100 行注释里就可以找到所接受的引导选项说明。大多数选项是通过"_

如何解决线上平台抽佣高 线下门店客流少的痛点!

目前,许多传统零售店铺正遭遇客源下降的难题。尽管广告推广能带来一定的客流,但其费用昂贵。鉴于此,众多零售商纷纷选择加入像美团、饿了么和抖音这样的大型在线平台,但这些平台的高佣金率导致了利润的大幅缩水。在这样的市场环境下,商家之间的合作网络逐渐成为一种有效的解决方案,通过资源和客户基础的共享,实现共同的利益增长。 以最近在上海兴起的一个跨行业合作平台为例,该平台融合了环保消费积分系统,在短

购买磨轮平衡机时应该注意什么问题和技巧

在购买磨轮平衡机时,您应该注意以下几个关键点: 平衡精度 平衡精度是衡量平衡机性能的核心指标,直接影响到不平衡量的检测与校准的准确性,从而决定磨轮的振动和噪声水平。高精度的平衡机能显著减少振动和噪声,提高磨削加工的精度。 转速范围 宽广的转速范围意味着平衡机能够处理更多种类的磨轮,适应不同的工作条件和规格要求。 振动监测能力 振动监测能力是评估平衡机性能的重要因素。通过传感器实时监

缓存雪崩问题

缓存雪崩是缓存中大量key失效后当高并发到来时导致大量请求到数据库,瞬间耗尽数据库资源,导致数据库无法使用。 解决方案: 1、使用锁进行控制 2、对同一类型信息的key设置不同的过期时间 3、缓存预热 1. 什么是缓存雪崩 缓存雪崩是指在短时间内,大量缓存数据同时失效,导致所有请求直接涌向数据库,瞬间增加数据库的负载压力,可能导致数据库性能下降甚至崩溃。这种情况往往发生在缓存中大量 k

6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)

上篇:6.1.数据结构-c/c++模拟实现堆上篇(向下,上调整算法,建堆,增删数据)-CSDN博客 本章重点 1.使用堆来完成堆排序 2.使用堆解决TopK问题 目录 一.堆排序 1.1 思路 1.2 代码 1.3 简单测试 二.TopK问题 2.1 思路(求最小): 2.2 C语言代码(手写堆) 2.3 C++代码(使用优先级队列 priority_queue)