0
まず、既存の「動作中の」Javaアプリケーションを新しいバージョンのJavaに移行します。私たちはRed Hat(REHL 6)とJava 1.8.0_60とTomcat 6で作業しています。今、Tomcat 7に移そうとしています(Tomcat 7.5.4からのエラーです)。
Tomcatが作業ディレクトリにJAVAおよびCLASSファイルを作成する際にエラーが発生しているようです。ただ、
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<% String content = request.getParameter("content"); %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xml:lang="en">
<jsp:include flush="true" page="./includes/nacHead.jsp"/>
<body>
<a name=top></a>
<table id=twoColMain height=100% width=990 border=0 cellpadding=0 cellspacing=0 align=center>
<jsp:include flush="true" page="./includes/nacHeader.jsp"/>
<tr>
<jsp:include flush="true" page="./includes/nacSideNav.jsp"/>
<jsp:include flush="true" page="<%=content %>"/>
</tr>
<tr>
<td colspan=3 class=footerBar><a href=#top>Back to Top</a></td>
</tr>
<tr>
<td colspan=3 align=left class=footerCopy>Copyright © 2007 CORT® All images and copy. All rights reserved.</td>
</tr>
</table>
</body>
</html>