出错原因: tomcat下面同时放了两个项目
启动时报错,结果是一个项目正常,一个项目不能正常启动
严重: The web application [/inventory] registered the JDBC driver [com.alibaba.druid.mock.MockDriver] but failed to unregister it when the web application was s
topped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
刚开始以为是数据库连接池的bug,不能同时有两个连接池名称相同。尝试修改连接池名称后依然不管用。
并更新连接池jar包到最新包1.1.9, 问题并没有解决
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.9</version>
</dependency>
无奈之下继续baidu, 发现一遍国外文章
To prevent a memory leak, the JDBC Driver has been forcibly unregistered
并尝试写一个监听器,在项目销毁时,释放jdbc链接。依然不管用。
继续查看报错日志
发现cartalina.out 里面只有这样一个错,但是没有详细的错误信息
One or more listeners failed to start. Full details will be found in the appropriate container log file
于是新增一个日志配置 logging.properties
handlers = org.apache.juli.FileHandler, java.util.logging.ConsoleHandler
############################################################
# Handler specific properties.
# Describes specific configuration info for Handlers.
############################################################
org.apache.juli.FileHandler.level = FINE
org.apache.juli.FileHandler.directory = ../logs
org.apache.juli.FileHandler.prefix = error-debug.
java.util.logging.ConsoleHandler.level = FINE
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
然后会在logs文件下生成一个error-debug的文件查看里面错误信息
严重: Exception sending context initialized event to listener instance of class org.springframework.web.util.Log4jConfigListener
java.lang.IllegalStateException: Web app root system property already set to different value: 'webapp.root' = [D:\OPT\apache-tomcat-7.0.96-fh\webapps\fhm_weizu\] instead of [D:\OPT\apache-tomcat-7.0.96-fh\webapps\inventory\] - Choose unique values for the 'webAppRootKey' context-param in your web.xml files!
at org.springframework.web.util.WebUtils.setWebAppRootSystemProperty(WebUtils.java:163)
at org.springframework.web.util.Log4jWebConfigurer.initLogging(Log4jWebConfigurer.java:119)
at org.springframework.web.util.Log4jConfigListener.contextInitialized(Log4jConfigListener.java:49)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:5197)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5720)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:145)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1707)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1697)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:745)
于是顺藤摸瓜,在web.xml 中增加配置webAppRootKey后,完美解决
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>webapp.inventory</param-value>
</context-param>
转载于:https://my.oschina.net/yangshj/blog/3097946
分享到:
相关推荐
将 client-adapter.es7x-1.1.5-jar-with-dependencies.jar 替换plugin下的jar可以解决druid报错问题,注意版本1.1.5,不是这个版本不一定能解决
### Alibaba Druid 数据源配置详解及常见问题解析 #### 一、DruidDataSource 配置解析 **Alibaba Druid** 是一款高性能的 Java 数据库连接池组件,它提供了强大的监控和扩展功能。对于开发者而言,正确地配置 ...
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"> <property name="driverClassName" value="com.mysql.jdbc.Driver"/> <!-- 初始化连接大小 --> <!-- 连接...
Maven坐标:com.alibaba:druid:1.1.16; 标签:alibaba、druid、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码和结构保持...
Maven坐标:com.alibaba:druid:1.1.22; 标签:alibaba、druid、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码和结构保持...
Maven坐标:com.alibaba:druid:1.2.8; 标签:alibaba、druid、jar包、java、中英对照文档; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码和结构...
最新版 alibaba druid-1.2.3.jar
Maven坐标:com.alibaba:druid:1.1.9; 标签:alibaba、druid、中文文档、jar包、java; 使用方法:解压翻译后的API文档,用浏览器打开“index.html”文件,即可纵览文档内容。 人性化翻译,文档中的代码和结构保持...
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource spring.datasource.url=jdbc:mysql://202.114.255.78:3306/shen?useSSL=false&serverTimezone=UTC&useAffectedRows=true&useUnicode=true&...
type: com.alibaba.druid.pool.DruidDataSource url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8 username: root password: root driver-class-name: com.mysql.jdbc.Driver ...
最新版alibaba druid-1.2.2.jar
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource spring.datasource.druid.initial-size=5 spring.datasource.druid.min-idle=5 spring.datasource.druid.max-active=20 spring.datasource....
app.datasource.cbssxin.type=com.alibaba.druid.pool.DruidDataSource app.datasource.cbssxin.url=jdbc:t4jdbc:///xxxxxxx app.datasource.cbssxin.username=423423 app.datasource.cbssxin.password=f6#234234 ...
2019年7月最新发布,阿里druid-1.1.19连接池jar包,大项目亲测可用,放心下载使用
本主题将深入探讨数据库连接池Druid以及它的1.1.21版本,同时也会涉及如何配置其核心组件——`druid.properties`文件。 Druid是一个流行的Java数据库连接池实现,由阿里巴巴开发并开源。它不仅提供了数据库连接池的...
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"> <!-- 基本属性 --> <property name="driverClassName" value="com.mysql.jdbc.Driver"/> <!-- 配置初始化...
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource spring.datasource.druid.initial-size=5 spring.datasource.druid.min-idle=5 spring.datasource.druid.max-active=20 spring.datasource.druid....
免责声明:资料部分来源于合法的互联网渠道收集和整理,部分自己学习积累成果,供大家学习参考与交流。收取的费用仅用于收集和整理资料耗费时间的酬劳。 本人尊重原创作者或出版方,资料版权归原作者或出版方所有,...
3. **数据分片与并行处理**:Druid支持数据的分片和并行查询,通过`com.alibaba.druid.sql.DruidSQLExecutor`类,可以将复杂的查询任务分解为多个子任务并发执行,提升查询速度。 4. **监控与日志**:Druid提供了...
druid