import com.opensymphony.xwork2.ActionSupport; /** * @author ReaJason * @since 2024/12/7 */ public class TestAction extends ActionSupport { @Override public String execute() throws Exception { return SUCCESS; } }