5

こんにちは、私は彼らのウェブサイトから春のチュートリアルに従ったにもかかわらず、私はこのエラーを受け取り続けています. なぜこのエラーが発生するのかを理解しようとしています。Facebook に接続できますが、Spring が提供するチュートリアルのようにフィードを取得しようとすると、ホワイトラベル エラーが発生し続けます。それは言います:

このアプリケーションには /error の明示的なマッピングがないため、これはフォールバックとして表示されます。予期しないエラーが発生しました (タイプ = 見つかりません、ステータス = 404)。メッセージがありません

すべて問題ないようですが、なぜこのエラーが発生し続けるのかわかりません。誰かが助けてくれるなら、私はそれを感謝します。

私のコントローラは src/main/java/home に置かれました:

@Controller
@RequestMapping(value="/")
public class HomeController {

private Facebook facebook;

@Inject
public HomeController(Facebook facebook) {
    this.facebook = facebook;
}

@RequestMapping( method =RequestMethod.GET)
public String getPhotos(Model model){

    if(!facebook.isAuthorized())
    {
        return "redirect:/connect/facebook";
    }
    model.addAttribute(facebook.userOperations().getUserProfile());
    PagedList<Post> homeFeed = facebook.feedOperations().getHomeFeed();
    model.addAttribute("feed", homeFeed);

    return "hello";
 }
}

src/main/java/home/main に置かれた Application.java ファイル:

@SpringBootApplication
 public class Application {
 public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
  }
}

以下は私のbuild.gradleファイルです:

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'

buildscript{
repositories{
   // maven { url "https://repo.spring.io/release" }
    maven { url "https://repo.spring.io/libs-milestone"}
   // mavenCentral()
      }
dependencies {
    classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.3.RELEASE")
  }
 }
repositories {
   maven { url "https://repo.spring.io/libs-milestone"}
   mavenCentral()
 }
bootRepackage {
  mainClass = 'facebookArchiver.Application'
}
 dependencies {
  compile ('org.springframework.social:spring-social-facebook:2.0.0.RELEASE')
  compile("org.springframework.boot:spring-boot-starter-thymeleaf")
  compile('org.springframework.boot:spring-boot-starter-web')
  testCompile group: 'junit', name: 'junit', version: '4.11'
 }
 task wrapper(type: Wrapper) {
      gradleVersion = '2.3'
 }

hello.html ファイル: src/main/resources/templates フォルダーに保存されます。

<html>
 <head>
<title>Hello Facebook</title>
</head>
<body>
 <h3>Hello, <span th:text="${facebookProfile.name}">Some User</span>!</h3>

 <h4>Here is your home feed:</h4>

 <div th:each="post:${feed}">
 <b th:text="${post.from.name}">from</b> wrote:
 <p th:text="${post.message}">message text</p>
 <img th:if="${post.picture}" th:src="${post.picture}"/>
 <hr/>
 </div>
</body>
</html>

facebookConnect.html: src/main/resources/templates/connect フォルダーに保存されます。

 <html>
 <head>
 <title>Hello Facebook</title>
 </head>
 <body>
  <h3>Connect to Facebook</h3>

  <form action="/connect/facebook" method="POST">
<input type="hidden" name="scope" value="read_stream" />
  <div class="formInfo">
    <p>You aren't connected to Facebook yet. Click the button to connect  this application with your Facebook account.</p>
 </div>
 <p><button type="submit">Connect to Facebook</button></p>
</form>
</body>
</html>

そして最後に facebookConnected.html: src/main/resources/templates/connect フォルダーの下にも保存されます: 以下は facebookConnected.html のファイルです:

<html>
<head>
  <title>Hello Facebook</title>
</head>
  <body>
   <h3>Connected to Facebook</h3>
   <p>
     You are now connected to your Facebook account.
    Click <a href="/">here</a> to see some entries from your Facebook photos.
  </p>
</body>
</html>
4

4 に答える 4

31

コントローラーが異なるパッケージ構造にある場合は、アプリケーション@ComponentScanに追加する必要があります。Spring Bootclass

例 :

@ComponentScan(basePackages={"package name of where the controller is"})
于 2015-05-07T12:52:10.163 に答える