I have a piece of Java code in a simple blogging servlet being used in Apache Tomcat. I have page being generated based on a form in the previous page, among this is a link to publish the post. I would like the user clicking that link to call a method later in the class. Is this possible and, if so, how?
|
|
Yes. The link can point back to that servlet (or to any servlet), and when you process the request, call whatever method you like.
|
||||||
|
|
|
Links generate GET requests. So if you want to execute some Java code during a GET request, you need to create a Servlet which has the If necessary, you can pass request parameters using the usual query string way like After processing the request, the servlet needs to forward the request to a JSP to display the page. This can be done by The servlet class behind Hope this helps. [Edit] as one of your later comments reveals, you'd like to pass request scoped data to the next request. This case, just pass them along to the next request as request parameters. If they are already available as request parameters, then just do:
Otherwise, if they're only available as model data, then do something like:
Inside the Good luck. |
|||
|
|
