Hi I am wondering is there a way in Struts2 to get the result of JSP before returning the composed HTML back to client?
for example
public String execute() {
...do my logic and prepare my data
...then using the data, compose a HTML file from existing jsp
... then i need to save the HTML file somewhere
...then
return SUCCESS; --> maybe to same HTML or other JSP
}
Thanks

