2
votes
2answers
346 views
Is there a way to set timeouts in tomcat?
Can I set timeouts for JSP pages in tomcat either on a per page or server level?
…
5
votes
3answers
244 views
Best way to modularize a block of JSP code
I have a block of JSP code that needs to be used in several places (basically a widget that several pages use). What's a good way to modularize this? I'd rather not put it in an object since string …
0
votes
4answers
559 views
Is it possible to get calling page name inside a jsp 2.0 custom tag?
I'm writing a custom JSP tag using the JSP 2 tag files. Inside my tag I would like to know which page called the tag in order to construct URLs. Is this possible with out passing it through an attr …
0
votes
Is it possible to get calling page name inside a jsp 2.0 custom tag?
Turns out that the request object actually is available, but only in the EL portion of a tag. So this would work:
<form action="${pageContext.request.requestURI}">
…
1
vote
How to get the get method parameters in jsp?
You can get it off of the request object.
request.getParameter("<param name>");
…
