- Is there command to stop execution of the jsp file?
- if (x==y) {
- ...
- } else {
- ...
- }
- if (x==y) {
- ....
- stopExecution();
- }
- ....
- public void _jspService(HttpServletRequest request, HttpServletResponse response)
- throws java.io.IOException, ServletException {
- // ...
- }
- out: {
- if( x == y) break out;
- ........................
- }