SEVERE: Error listenerStart(listener启动失败)

两个app单独启动就ok,同时部署就severe了,listener启动失败

原因是加了spring的log4j监听器
<listener>
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class>
</listener>

Log4jConfigListener的contextInitialized方法最终会调用WebUtils.setWebAppRootSystemProperty来设置webapp.root,如果root已经存在就会抛出异常,代码如下:
String param = servletContext.getInitParameter(WEB_APP_ROOT_KEY_PARAM);
String key = (param != null ? param : DEFAULT_WEB_APP_ROOT_KEY);
String oldValue = System.getProperty(key);
if (oldValue != null && !StringUtils.pathEquals(oldValue, root)) {
throw new IllegalStateException(
“Web app root system property already set to different value: ‘” +
key + “‘ = [" + oldValue + "] instead of [" + root + "] – ” +
“Choose unique values for the ‘webAppRootKey’ context-param in your web.xml files!”);
}

解决办法从上面代码也就能猜到,就是在web.xml中为每个app设置各自的WEB_APP_ROOT_KEY_PARAM,如下
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>mmcroot</param-value>
</context-param>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值