Latest Answer: jsp1.Struts framework is basically using the taglib so we can import taglib, it is possible for jsp elements.Directive tag
Latest Answer: Offcourse you can make changes to actionservlet by extending it and override the particular method or funcationality which is not meeting your problem requirements.Check with RequestProcess interface and see by having you own request process class implementation ...
In struts, if any changes are made to before the request reaches to actionservlet, where you do the changes?
Latest Answer: JSPs are more towards the J2EE line. In a large jsp applications, lot of java script , css(cascaded sytle sheet) , lot of more thing are applied, with the actual information. Information is required but the presentation of information is also important. ...
Latest Answer: IN addition to whatever said in comment one, in Jakarta Struts request processor has most of the following responsibilities: 1. Determine path, 2. Handle Locale, 3. Process content and encoding type, 4.Process cache headers 5. Pre Processing hook 6.Pre-processing ...
Latest Answer: Since the very purpose of having a controller in the struts framework is to redirect the request to the appropriate action class to process the correspnding business logic, and servlet is the gateway to the web-container for each http request. ...
Latest Answer: hithe action mapping object to give the proper action to that partcular request and takes care of validation also. ...
Latest Answer: Yes Sp is right, and the statement to store the save ActionMessages isActionMessages am = new ActionMessages();saveMessages(request, actionMessages); ...
What is the correct syntax for removing ActionMessages from the session context? Choice 1 Action.removeErrors(); Choice 2 ActionMessages msg1 = new ActionMessages("clear"); Action.saveErrors(session, msg1); Choice 3 Action.saveErrors(session, null); Choice 4 Action.clearErrors(session, null); Choice 5 request.getSession().saveErrors(session, null);
Question: Assuming the class LoginForm contains a String property named "password", how does the LoginAction class access the attribute called "password" in the above request? Explain why.Choice 1 String password = request.getParameter("password"); Choice 2 String password = request.getAttribute("password"); Choice 3 request.getParameterNames().getParameter("password"); Choice 4 String password = ((LoginForm)
View page << Previous 2 3 4 5 [6] 7 8 9 10 11 Next >>

Go Top