0

我在 Liferay 中使用自定义 Portlet 时遇到一些问题 不知道,但是当我将我的 war 文件部署到其他机器 Liferay 服务器时,它会向我显示一个页面,其中包含一些不需要的字符,而我的 jsp 页面中没有字符。但是jsp页面中使用的javascript或html标签没有错误。

这是jsp页面的图像。

在此处输入图像描述

我的jsp页面代码如下

<%@ include file="/init.jsp"%>
<%@page import="com.liferay.portal.kernel.util.PropsUtil"%>
<%@page import="com.liferay.util.portlet.PortletProps"%>
<%@page import="emenu.advertise.emailnotification.EmailNotification"%>
<%@page import="com.liferay.portal.model.Role"%>
<%@page import="com.liferay.portal.model.Organization"%>
<%@page import="com.liferay.portal.util.PortalUtil"%>
<%@page import="emenu.advertise.portlet.RestaurantPortlet"%>
<%@page import="com.liferay.portal.kernel.util.GetterUtil"%>
<%@page import="com.liferay.util.portlet.PortletProps"%>;
<%@ page import="javax.portlet.PortletConfig"%>
<%@ page import="com.liferay.util.mail.MailEngine"%>
<portlet:renderURL var="editadvertiseURL">
    <portlet:param name="jspPage" value="/jsps/advertise/EditAdvertise.jsp" />
</portlet:renderURL>
<portlet:renderURL var="addAdvertiseURL">
    <portlet:param name="jspPage" value="/jsps/advertise/NewAdvertise.jsp" />
</portlet:renderURL>
<portlet:renderURL var="advertiselistUrl">
    <portlet:param name="jspPage" value="/jsps/advertise/AdvertiseList.jsp" />
</portlet:renderURL>

<%
if(!themeDisplay.isSignedIn())
                                                              {
%>
<script type="text/javascript">
    window.location="<%=themeDisplay.getURLSignIn()%>";
</script>
<%} %>

<%
    String loading_img_path = request.getContextPath()
            + "/img/ajax_loader.gif";
%>
<script src="<%=request.getContextPath()%>/js/jquery.min.js"></script>
<script
    src="<%=request.getContextPath()%>/lib/datatables/jquery.dataTables.min.js"></script>
<script
    src="<%=request.getContextPath()%>/lib/datatables/jquery.dataTables.sorting.js"></script>
<script src="<%=request.getContextPath()%>/js/gebo_tables.js"></script>
<%  String sRoleName=null;
boolean isReseller= Common.CheckisReseller(themeDisplay);
if(isReseller){
    sRoleName="Reseller";
}
else{   
    sRoleName="Advertiser";
}   %>

<nav>
    <div id="jCrumbs" class="breadCrumb module">
        <ul>
            <li><a href="#"><i class="icon-home"></i></a></li>
            <li><a href="#"><%=sRoleName%></a></li>
            <li>Ads</li>
        </ul>
    </div>
</nav>

现在问题出现在标签之前的某个地方

<nav>
        <div id="jCrumbs" class="breadCrumb module">

让我给你一张 mozila firebug 的图片 在此处输入图像描述

在我的机器服务器中,它运行良好。但不知道当我尝试导出战争甚至尝试使用 eclipse 进行部署时会发生什么......它在我的 jsp 页面中显示了这个不需要的字符。

4

1 回答 1

1

代替

<%@page import="com.liferay.util.portlet.PortletProps"%>;

<%@page import="com.liferay.util.portlet.PortletProps"%>
于 2013-02-06T07:46:52.737 回答