Strange issue with imports compiling jsp
Hi,
compiling the following jsp:
<%@ page import="pvblivs.tool.admin.common.*" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
...
I get the following very strange error:
...
Generated servlet error:
[javac] Compiling 1 source file
inc_pnav_jsp.java:11: illegal start of type
pvblivs.tool.admin.common.*;
...
Looking up the compiled source files, I realized jasper creating the following java code (and that's what seems to be really bad :-)):
package org.apache.jsp;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import org.apache.jasper.runtime.*;
publicclass inc_pnav_jspextends HttpJspBase{
pvblivs.tool.admin.common.*;
...
I would appreciate any little help what I might be doing wrong :-)
Bye,
Pvblivs

