i can not add a servlet to my ejb project in eclipse? i wanted the servlet to display the returned map of <coulmn name, value> from component class
ejb servlet
Collapse
X
-
You probably also should look at your Servlet as a Bean, therefore, you would not add a Bean into a Servlet but could make a Servlet work as a Bean.
In turn, you would be reading your Bean or Servlet through a straight JSP page, or a JSF enabled JSP page (have not tried Servlet with JSF, but have with a Bean).
What this means is, you could simply look at a Servlet as a Bean if you wanted to, but you would get possible unsound results depending on what you're looking to achieve, I would go with a straight SQL Bean or else.
If you'd like to post a bit of your work here, we'd be happy to take a stab at it:-)
In a bit!Comment
Comment