Bea weblogic imports java.util.* for you when it translates the jsp into a servlet.

Tomcat imports only what the spec says it must import and nothing else (Except its own support pacakge)

import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
import org.apache.jasper.runtime.*;


-Tim

Pablo Carretero S�nchez wrote:

Hi,


do know if can I import java packages in a implicit way in a JSP??


I means, I'm working with a Bea Weblogic application, and I want run this app in Tomcat. There are several jsp in Bea using Vector without the import java.utils.Vector. This jsp works fine in Bea but not in Tomcat. Do you know why??


Best regards.


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to