Had a quick question on the right way to include jsp header files (using appengine). I have an htmlinclude.jsp that just contains the head portion
This is the header file
<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>
Other jsp files include this headerfile as follows
<% String title="page title" ;%>
<%@ include file="htmlinclude.jsp" %>'
While trying to deploy to appengine I get an error -
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
While running it off of the local machine I have no issues...Is there a flag I should set so the htmlinclude.jsp is not compiled?