如何使用原始servlet重定向在struts2方法中

时间:2017-06-03 04:04:16

标签: struts2 servlet-3.0

在一个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 "";}

0 个答案:

没有答案