if u havea .class file ,how can u say whether it is servlet
or not ,dont use java decompliler

Answers were Sorted based on User's Feedback



if u havea .class file ,how can u say whether it is servlet or not ,dont use java decompliler..

Answer / kunal

Just Use Reflection to get its SuperClass. If this super
class is Any of Servlet class like HttpServlet or
GenericServlet then this class is a servlet...

Is This Answer Correct ?    7 Yes 0 No

if u havea .class file ,how can u say whether it is servlet or not ,dont use java decompliler..

Answer / mamta

when we open .class file if it contain
javax/servlet/Servlet ,javax/servlet/http/HttpServlet
this shows it is a servlet

Is This Answer Correct ?    4 Yes 1 No

if u havea .class file ,how can u say whether it is servlet or not ,dont use java decompliler..

Answer / amitasite

1) Use Reflection API
2) Configure web.xml and configure <servlet> and <servlet-
mapping>. Send request to the URL. If it is not servlet
then will throw exception like
javax.servlet.ServletException: Class
com.request.TestServlet is not a Servlet

Is This Answer Correct ?    1 Yes 0 No

if u havea .class file ,how can u say whether it is servlet or not ,dont use java decompliler..

Answer / reddy

when we open the .class file
it my contains something like
;Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/
HttpServletRespons

where as simple java .class file will not contain this

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More Servlets Interview Questions

What are session variable in servlets?

0 Answers  


What is the default HttpRequest method?

6 Answers  


Difference between get and post in java servlets?

0 Answers  


What’s the difference between sendredirect and forward methods

0 Answers  


what are binding listners?

1 Answers  






What exactly is a servlet?

0 Answers  


How do I use cookies to store session state on the client?

0 Answers  


What are important features of Servlet 3?

0 Answers  


How can you start a jta transaction from a servlet deployed on jboss?

0 Answers  


Should I override the service() method?

0 Answers  


Where do you define dispatcherservlet?

0 Answers  


How do you invoke a servelt?

0 Answers  


Categories