1
I created a Servlet that should access a class in java that is in a Jar file in Servlet Buildpath, but it is giving an error, I will leave the prints here for those who can help me take a look. Thank you!
1
I created a Servlet that should access a class in java that is in a Jar file in Servlet Buildpath, but it is giving an error, I will leave the prints here for those who can help me take a look. Thank you!
Browser other questions tagged java servlet
You are not signed in. Login or sign up in order to post.
The line
cep.consulta(...);
has a warn, what it says in the IDE message?– Renan Gomes
says this: The Static method query(String) from the type Query should be accessed in a Static way
– Igor Silva
publish the code of the class
ConsultaCEP();
! And try: delete the line 31 and replacecep.consulta(numCep1);
forConsultaCEP().consulta(numCep1);
– Marcos Sousa
The stackoverflow won’t let me put any more :/
– Igor Silva
@Marcossousa could add me in some network to get me some basic doubts?
– Igor Silva
@Igorsilva, yes I can. but we can open a chat, here by SOF!
– Marcos Sousa
@Igorsilva, comment was helpful to your question?
– Marcos Sousa
Thank you guys! Actually nothing worked because the JAR file was compiled with problems.
– Igor Silva