liferay でカスタム ポートレットを使用しているときに問題が発生しました わかりませんが、war ファイルを他のマシンの liferay サーバーに展開すると、jsp ページに文字がないのに、不要な文字を含むページが 1 つ表示されます。ただし、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">
mozilla firebug の画像を教えてください
My Machine Server では、完全に機能しています。しかし、戦争をエクスポートしようとしたり、Eclipse で展開しようとしたりするとどうなるかわかりません..jsp ページにこの不要な文字が表示されます。