hi !
I have a class (simulateur.class/.java) I need to make an instance of in my JSP page.
From things I've read, I understood that my class ought to be in a package. So I created a directory (simul) where my JSP pages are and put and compiled my Java class in it.
Now I can't have my JSP page working :
I tried to import like this :
<%@ page import = "simul.simulateur" %>, but then I get the message : Class simul.simulateur not found in import
then <%@ page import = "simul.*" %> gives me : Package simul not found in import
And so on...
So, how does the correct call look like ?
Thanks,
Gaelle.
I have a class (simulateur.class/.java) I need to make an instance of in my JSP page.
From things I've read, I understood that my class ought to be in a package. So I created a directory (simul) where my JSP pages are and put and compiled my Java class in it.
Now I can't have my JSP page working :
I tried to import like this :
<%@ page import = "simul.simulateur" %>, but then I get the message : Class simul.simulateur not found in import
then <%@ page import = "simul.*" %> gives me : Package simul not found in import
And so on...
So, how does the correct call look like ?
Thanks,
Gaelle.