I have two JSP files on a GAE project. I'm trying to pass data between them:
index.jsp:
<%! String title = "foo"; %>
<jsp:include page="templates/header.jsp" />
templates/header.jsp:
<!-- ... -->
<title><%=title%></title>
<!-- ... -->
This fails, saying that title
can't be resolved. What is the right way to do this?
The error is:
An error occurred at line: 8 in the jsp file: /templates/header.jsp title cannot be resolved