Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 22nd, 2012  |  syntax: None  |  size: 0.35 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Is there command to stop execution of the jsp file?
  2. if (x==y) {
  3. ...
  4. } else {
  5. ...
  6. }
  7.        
  8. if (x==y) {
  9. ....
  10. stopExecution();
  11. }
  12. ....
  13.        
  14. public void _jspService(HttpServletRequest request, HttpServletResponse response)
  15.     throws java.io.IOException, ServletException {
  16.     // ...
  17. }
  18.        
  19. out: {
  20.        if( x == y) break out;
  21. ........................
  22.        }