Calling a method from within a servlet in tomcat generated HTML - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T07:25:50Zhttp://stackoverflow.com/feeds/question/1677344http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1677344/calling-a-method-from-within-a-servlet-in-tomcat-generated-html0Calling a method from within a servlet in tomcat generated HTMLIgmanhttp://stackoverflow.com/users/1190022009-11-04T23:14:57Z2009-11-04T23:36:58Z
<p>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?</p>
http://stackoverflow.com/questions/1677344/calling-a-method-from-within-a-servlet-in-tomcat-generated-html/1677362#16773621Answer by BalusC for Calling a method from within a servlet in tomcat generated HTMLBalusChttp://stackoverflow.com/users/1578822009-11-04T23:20:13Z2009-11-04T23:36:58Z<p>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 <code>doGet()</code> implemented and execute the desired code logic accordingly. </p>
<p>If necessary, you can pass request parameters using the usual query string way like <code>href="myservlet?name1=value1&name2=value2"</code> or -more SEO friendly- as part of the path like <code>href="myservlet/value1/value2"</code> which you can access using <code>HttpServletRequest#getPathInfo()</code>.</p>
<p>After processing the request, the servlet needs to forward the request to a JSP to display the page. This can be done by <code>request.getRequestDispatcher("page.jsp").forward(request, response)</code>. </p>
<p>The servlet class behind <code>myservlet</code> is obviously to be mapped on an <code>url-pattern</code> of <code>/myservlet/*</code>.</p>
<p>Hope this helps.</p>
<p>[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:</p>
<pre><code>href="myservlet?name1=${param.name1}&name2=${param.name2}"
</code></pre>
<p>Otherwise, if they're only available as model data, then do something like:</p>
<pre><code>href="myservlet?name1=${data.name1}&name2=${data.name2}"
</code></pre>
<p>Inside the <code>doGet()</code> method you can reobtain them the usual way by <code>HttpServletRequest#getParameter()</code>.</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/1677344/calling-a-method-from-within-a-servlet-in-tomcat-generated-html/1677364#16773641Answer by Willie Wheeler for Calling a method from within a servlet in tomcat generated HTMLWillie Wheelerhttp://stackoverflow.com/users/418712009-11-04T23:20:32Z2009-11-04T23:20:32Z<p>Yes. The link can point back to that servlet (or to any servlet), and when you process the request, call whatever method you like.</p>
<pre><code>public void doGet(HttpServletRequest req, HttpServletResponse res)
throws IOException, ServletException {
... whatever I want ...
anyMethod(req, res);
... whatever I want again ...
}
</code></pre>