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

[1531 byte] By [Pvblivsa] at [2007-10-1 21:12:48]
# 1
can you try this like this<%@ page language="java" import="java.util.List"%>
ShivaKatulaa at 2007-7-13 3:09:39 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...