0
有一個正確的方式來包含jsp頭文件(使用appengine)的快速問題。我有一個 htmlinclude.jsp只包含頭部包括jsps編譯錯誤
這是頭文件
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="/styles.css" />
<title><%=title%></title>
</head>
<body>
其他JSP文件包含此headerfile如下
<% String title="page title" ;%>
<%@ include file="htmlinclude.jsp" %>'
在試圖部署到AppEngine上我收到一個錯誤 -
SEVERE: Error compiling file: htmlinclude_jsp.java
[javac] Compiling 1 source file
[javac] C:\htmlinclude_jsp.java:46: cannot find symbol
[javac] symbol : variable title
[javac] location: class org.apache.jsp.htmlinclude_jsp
[javac] out.print(title);
[javac] ^
[javac] 1 error
運行時關閉本地機器我沒有問題...是否有一個標誌,我應該設置這樣的htmlinclude.jsp不編譯?
謝謝...這工作 – user529265 2011-03-01 19:44:51
不客氣。你用什麼解決方案? – BalusC 2011-03-01 19:46:16