暂时未解决

checkActivation=====================true
Can Not Parse ConnectionCfg!
2019/10/12-11:23:38 >> INFO >> localhost-startStop-1 >> com.neusoft.unieap.connection.cfg.BusinessConnectionCfg.getInputStreamForConfigFile(BusinessConnectionCfg.java:116) >> Using business connection pool config file in JAR file '/D:/lab/UniEAPWorkshop_5.0/Project/WEB/framework/webroot/WEB-INF/lib/unieap-connection.jar', which path is 'com/neusoft/unieap/connection/cfg/business-connection-config.xml'.
[UniEAP Connection Module] Using business connection pool config file in JAR file '/D:/lab/UniEAPWorkshop_5.0/Project/WEB/framework/webroot/WEB-INF/lib/unieap-connection.jar', which path is 'com/neusoft/unieap/connection/cfg/business-connection-config.xml'.
[UniEAP Connection Module] Error! Can not find connection pool config file in 'D:\lab\UniEAPWorkshop_5.0\Project\WEB\framework\webroot\WEB-INF/conf/unieap/connection/connection-config.xml'!
2019/10/12-11:23:38 >> ERROR >> localhost-startStop-1 >> com.neusoft.unieap.connection.PoolRegistry.setupPoolRegistry(PoolRegistry.java:154) >> Error Can not find connection pool config file in 'D:\lab\UniEAPWorkshop_5.0\Project\WEB\framework\webroot\WEB-INF/conf/unieap/connection/connection-config.xml'!
[UniEAP Transaction Module] Start instanting TransactionManager.
2019/10/12-11:23:38 >> INFO >> localhost-startStop-1 >> com.neusoft.unieap.transaction.TransactionManagerAdaptor.getTransactionManager(TransactionManagerAdaptor.java:52) >> Start instanting TransactionManager.
[UniEAP Transaction Module] Initialize TransactionManager Finished.
2019/10/12-11:23:38 >> INFO >> localhost-startStop-1 >> com.neusoft.unieap.transaction.TransactionManagerAdaptor.getTransactionManager(TransactionManagerAdaptor.java:100) >> Initialize TransactionManager Finished.
[UniEAP Workflow] Database time: 2019-10-12 11:23:39.0 [UniEAP Connection Module] Error! Can not find connection pool config file in 'D:\lab\UniEAPWorkshop_5.0\Project\WEB\framework\webroot\WEB-INF/conf/unieap/connection/connection-config.xml'! Oracle CUUG

  

Can not find connection pool config file的更多相关文章

  1. No connection string named '***' could be found in the application config file

    Code-First时更新数据库遇到妖孽问题“No connection string named '***' could be found in the application config fil ...

  2. ERROR: No pool defined. at least one pool section must be specified in config file

    root@ubuntu:/opt/php7# /opt/php7/sbin/php-fpm [22-Sep-2015 14:29:00] WARNING: Nothing matches the in ...

  3. MVC模式下unity配置,报错“No connection string named '**Context' could be found in the application config file”

     写在前面: 第一次配置时好好的,后来第二次改到MVC模式,把依赖注入写成字典的单例模式时,由于新建的ORM(数据库映射模型EF),怎么弄都不用,一直报错"No connection str ...

  4. [笔记]HAproxy reload config file with uninterrupt session

    HAProxy is a high performance load balancer. It is very light-weight, and free, making it a great op ...

  5. java.lang.IllegalStateException: Connection pool shut down

    最近使用HttpClient 4.5 使用 CloseableHttpClient 发起连接后,使用CloseableHttpResponse 接受返回结果,结果就报错了,上网查了下,有位stacko ...

  6. 500 OOPS: bad bool value in config file for: anon_world_readable_only Login failed.

    [root@hyc ~]# ftp 192.168.254.5 Connected to 192.168.254.5 (192.168.254.5). Welcome to blah FTP serv ...

  7. Example config file /etc/vsftpd.conf

    # Example config file /etc/vsftpd.conf # # The default compiled in settings are fairly paranoid. Thi ...

  8. error in config file "/etc/rabbitmq/rabbitmq.config"

    记录一次RabbitMQ配置文件配置错误 error信息: dill@ubuntu-vm:/usr/share/doc/rabbitmq-server$ sudo /usr/lib/rabbitmq/ ...

  9. Cannot get a connection, pool exhausted解决办法

    http://blog.163.com/it_message/blog/static/8892051200908102032653/ 连接池(Tomcat+oracle),运行一段时间后就会出现 Ca ...

随机推荐

  1. Problem C Shopping 闭环贪心

    #include <bits/stdc++.h> using namespace std; ; int fa[maxn]; int main(){ int n, m; scanf(&quo ...

  2. python 2 和python 3 中的编码对比

    在 Python 中,不论是 Python2 还是 Python3 中,总体上说,字符都只有两大类: 通用的 Unicode 字符: (unicode 被编码后的)某种编码类型的字符,比如 UTF-8 ...

  3. nginx 访问控制模块

    截图,代码截屏均引用自慕课网nginx相关教学视频 基于用户的访问控制模块 http_access_module 基于用户登录信任的模块 http_access_module 参数示意:address ...

  4. 使用nodejs进行开发,concurrently模块,使我们同时执行多个命令。

    concurrently模块使用. 安装模块 npm install concurrently 配置concurrently 运行多个服务 当我们使用nodejs和vue混合开发的时候.当要同时启动后 ...

  5. Trying to get property 'art_id' of non-object

    “Trying to get property 'art_id' of non-object”     正在尝试获取非对象的“art-id”属性. 我之前也是这么写的没出问题<td>{{$ ...

  6. 回文数二(acm训练)

    问题 1161: [回文数(二)] 时间限制: 1Sec 内存限制: 128MB 提交: 133 解决: 51 题目描述 若一个数(首位不为零)从左向右读与从右向左读都一样,我们就将其称之为回文数.  ...

  7. flask中models设计

    1. 自关联 class Comment(db.Model): __tablename__ = 'albumy_comment' id = db.Column(db.Integer, primary_ ...

  8. HTTP服务器(1)

    import socket def service_client(new_socket): """为这个客户端返回数据""" # 1. 接收 ...

  9. 对HTML中P标签的思考

    这几天在用VUE-CLI做一个demo,然后在渲染一个列表的时候遇到了一个挺不可思议的事情: <!--这只是一小部分,v-for的内容在上方--> <div class=" ...

  10. 20165213 Exp6 信息搜集与漏洞扫描

    信息搜集与漏洞扫描 一. 实践内容 (1)各种搜索技巧的应用 利用Google Hacking Datebase搜索. 尝试搜索http相关的漏洞,可以看到漏洞的相关信息. 也可以使用过滤器进行过滤, ...