1.

What is the purpose of Results annotation?

Answer»

A Results annotation is a collection of results. Under the Results annotation, we can have multiple Result annotations.

Results({   Result(name = "success", value = "/success.jsp"),   Result(name = "error", value = "/error.jsp")})public class Employee extends ActionSupport{ ...}


Discussion

No Comment Found