| Code: |
|
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP 'debug.jsp' starting page</title> </head> <body> <% String test = "test"; %> My test string is: <%= test %> <br> </body> </html> |
| Code: |
| <%@ include file="b.jspf" %>
<%@ include file="c.jspf" %> <%@ include file="d.jspf" %> |
| Code: |
| <%@ include file="e.jspf" %>
<%@ include file="f.jspf" %> <%@ include file="g.jspf" %> |
| Code: |
| -CityData cannot be resolved to a type (in file: �inc_processfindbooking.jspf�). |
| Code: |
| <%@ include file="../utils/city/inc_cityejb.jspf" %> |
| Code: |
| <%@ page import = "com.xxxxxx.yyyyy.zzzzzz.city.param.CityData" %> |
| Code: |
| INC_SECURITYREDIRECT_BKG cannot be resolved (in file: �inc_processfindbooking.jspf�) |
| Quote: |
| Supports breakpoints in both JSP files and included fragments |
| Quote: |
|
The real issue is setting breakpoints in jspf files OR after jspf includes. If I place the breakpoint in the main jsp file and before any includes then the breakpoints work :) . If I place the breakpoint after the jspf includes or in a jspf file then the breakpoints do not work :( . |