在一个Struts2方法中,我组织了我想要重定向的url,但是我不能在struts.xml中使用url,所以想要使用原始的servlet来重定向。实际上,struts2方法请求返回一个String输入,如果我使用原始servlet重定向,如何处理方法return.3q。
public String qqLogin() throws IOException, QQConnectException {
getResponse().setContentType("text/html;charset=utf-8");
String authorizeURL = new Oauth().getAuthorizeURL(getRequest());
log.info("LoginAction#qqLogin -> authorizeURL:" + authorizeURL);
getResponse().sendRedirect(authorizeURL);
return "";}