码迷,mamicode.com
首页 > Web开发 > 详细

Liferay 6.2 改造系列之二十一:修改WebSphare下JSONWS服务不生效的BUG

时间:2016-05-03 14:27:11      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:

问题原因是WebSphare下,servletContext.getContextPath()获取到的值为“/”而非空字符串。

在/portal-master/portal-impl/src/com/liferay/portal/spring/context/PortalContextLoaderListener.java文件中有如下代码:

if (ServerDetector.isWebSphere() &&_portalServletContextPath.isEmpty()) {
    _portalServlerContextName = StringPool.BLANK;
}

修改为:

if (ServerDetector.isWebSphere() &&(_portalServletContextPath.isEmpty() ||
    _portalServletContextPath.equals(StringPool.SLASH))) {
    _portalServletContextPath = StringPool.BLANK;
    _portalServlerContextName = StringPool.BLANK;
}

Liferay 6.2 改造系列之二十一:修改WebSphare下JSONWS服务不生效的BUG

标签:

原文地址:http://www.cnblogs.com/jytx/p/5454575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!