The error is weblogic.descriptor.DescriptorException: Unmarshaller failed

本文介绍了一种在WebLogic上部署应用时遇到的Theerrorisweblogic.descriptor.DescriptorException:Unmarshallerfailed异常及其解决方法。通过将web.xml中的web-app版本从2.5改为2.4,解决了部署问题。

今天一个同事问我项目部署在weblogic出现The error is weblogic.descriptor.DescriptorException: Unmarshaller failed这个异常,在tomcat上面是正常,在网上找了一些解决方法,主要都是讲需要把web-app由2_5改成2_4版本的

自动生成的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
 xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

我修改后的简单的web.xml

 <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:j2ee="http://java.sun.com/xml/ns/j2ee">
 
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>

</web-app>

 

或者

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
 xmlns="http://java.sun.com/xml/ns/j2ee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

 

就上面的web.xml文件我又重新尝试了一下,为什么会出现版本不符合的问题,也许是weblogic不支持这个版本,所以我也重新新建一个web project,后来出现一个选择版本的问题,默认选择J2EE 1.4,而我们经常选择前面一个,Jave EE 5.0(因为选择1.4的有个警告,而5.0没有警告),这个时候我尝试用J2EE 1.4,发现自动生成的web.xml已经是上面的了,这告诉我们有的时候还是注意一下版本问题,适当的时候还是需要用一下老的版本,新版本需要支持的。
 

转自:http://blog.sina.com.cn/s/blog_5d31611a0100d1xp.html


2025-11-04 16:47:05.706 INFO 25365 --- [[ACTIVE] ExecuteThread: '59' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 浏览器 : CHROME11 2025-11-04 16:47:05.706 INFO 25365 --- [[ACTIVE] ExecuteThread: '59' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 浏览器版本 : 117.0.0.0 2025-11-04 16:47:05.713 INFO 25365 --- [[ACTIVE] ExecuteThread: '99' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.g.apps.logging.aspect.LoggingAspect : 方法规则式拦截: supplierAvg 2025-11-04 16:47:05.713 INFO 25365 --- [[ACTIVE] ExecuteThread: '99' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 请求Url : http://sbsfn.smecs.com:80/coa/chart/supplier 2025-11-04 16:47:05.713 INFO 25365 --- [[ACTIVE] ExecuteThread: '99' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 请求ip : 10.190.84.235 2025-11-04 16:47:05.714 INFO 25365 --- [[ACTIVE] ExecuteThread: '99' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 浏览器 : CHROME11 2025-11-04 16:47:05.714 INFO 25365 --- [[ACTIVE] ExecuteThread: '99' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 浏览器版本 : 117.0.0.0 2025-11-04 16:47:11.740 ERROR 25365 --- [[ACTIVE] ExecuteThread: '22' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.g.a.c.c.e.Error500Controller : 捕获到错误: MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: Error selecting key or setting result to parameter object. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:11.741 ERROR 25365 --- [[ACTIVE] ExecuteThread: '25' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.g.a.c.c.e.Error500Controller : 捕获到错误: MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: Error selecting key or setting result to parameter object. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.388 ERROR 25365 --- [[ACTIVE] ExecuteThread: '56' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.417 ERROR 25365 --- [[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.427 ERROR 25365 --- [[ACTIVE] ExecuteThread: '99' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.511 ERROR 25365 --- [[ACTIVE] ExecuteThread: '63' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.521 ERROR 25365 --- [[ACTIVE] ExecuteThread: '36' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.547 ERROR 25365 --- [[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.553 ERROR 25365 --- [[ACTIVE] ExecuteThread: '74' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.559 ERROR 25365 --- [[ACTIVE] ExecuteThread: '67' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.561 ERROR 25365 --- [[ACTIVE] ExecuteThread: '66' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.582 ERROR 25365 --- [[ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.596 ERROR 25365 --- [[ACTIVE] ExecuteThread: '51' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.606 ERROR 25365 --- [[ACTIVE] ExecuteThread: '104' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.607 ERROR 25365 --- [[ACTIVE] ExecuteThread: '26' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.628 ERROR 25365 --- [[ACTIVE] ExecuteThread: '101' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. ### The error may exist in URL [zip:/home/weblogic/weblogic/user_projects/domains/smecs/servers/AdminServer/tmp/_WL_user/coa_1.0.0/svf14e/war/WEB-INF/lib/_wl_cls_gen.jar!/mybatis/mapper/CoaLotParameterMapper.xml] ### The error may involve com.smec.apps.coa.mapper.CoaLotParameterMapper.listLotParameterForDashboardStdDev ### The error occurred while executing a query ### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool JDBC-ORACLE-COA to allocate to applications, please increase the size of the pool and retry.. 2025-11-04 16:47:16.633 ERROR 25365 --- [[ACTIVE] ExecuteThread: '59' for queue: 'weblogic.kernel.Default (self-tuning)'] c.o.group.apps.core.aop.ConsolePrintAop : 抛出异常 : nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is we这是啥异常
最新发布
11-06
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值