0

我正在使用 spring 创建一个与 facebook 链接的应用程序。当应用程序启动时,它会将您重定向到登录页面。单击登录按钮后,它会将您重定向到主页。我想要做的是,当单击登录按钮时,它会将您重定向到主页并在最后添加一个唯一编号。每当我启动我的应用程序时,我都会收到 HTTP 状态 404 错误。我无法弄清楚问题是什么。编辑我正在使用 Spring Social Quickstart,我对该程序所做的唯一修改是以下

登录页面

    <%@ page session="false" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <html>
        <head>
            <title>Sign In</title>
        </head>
        <body>
<c:set var="rand"><%= java.lang.Math.round(java.lang.Math.random() * 2) %></c:set>
            <form action="<c:url value="/signin/facebook/${rand}" />" method="POST">
                <button type="submit">Sign in with Facebook</button>
                <input type="hidden" name="scope" value="email,publish_stream,offline_access" />
            </form>
        </body>
    </html>

主页

<%@ page session="false" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
    <head>
        <title>Home</title>
    </head>
    <body>
    <ul>
        <li><a href="<c:url value="/signout" />">Sign Out</a></li>
    </ul>
        <p>${number}</p>
    <h3>Your Facebook Friends</h3>
    <ul>
    <c:forEach items="${friends}" var="friend">
        <li><img src="http://graph.facebook.com/<c:out value="${friend.id}"/>/picture" align="middle"/><c:out value="${friend.name}"/></li>
    </c:forEach>
    </ul>   
    </body>
</html>

家庭控制器

@RequestMapping(value = "/{rand}", method = RequestMethod.GET)
public String home(@PathVariable("rand") String rand, Model model) throws IOException {

           List<Reference> friends = facebook.friendOperations().getFriends();
           FacebookProfile profile = facebook.userOperations().getUserProfile();
           String userID = facebook.userOperations().getUserProfile().getId();
           model.addAttribute("friends", friends);
           String accessToken = connectionRepository.getPrimaryConnection(Facebook.class).createData().getAccessToken();
            System.out.println(accessToken);
        return "home";
    }
4

1 回答 1

0

您的应用程序的基本 URL 是什么,您的控制器是否也有根 URL?这<c:url value="/signin/facebook/${rand}" />行代码将产生类似http://localhost:8080/yourAppname/signin/facebook/12342354665.

根据配置和其他注释,您应该更改@RequestMapping(value = "/{rand}", method = RequestMethod.GET)@RequestMapping(value = "/signin/facebook/{rand}", method = RequestMethod.GET). 您当前的映射(取决于控制器注释)仅提供根级 URL。

您是否启用了日志记录?您应该能够在日志中看到失败的映射。

于 2013-09-02T14:42:57.710 回答