Released version 1.0.0
[examples/facebook-app] / src / main / java / de / juplo / yourshouter / WebMvcConfig.java
index e5c6d6f..d520d24 100644 (file)
@@ -2,12 +2,10 @@ package de.juplo.yourshouter;
 
 
 
-import javax.inject.Inject;
 
 import org.springframework.context.annotation.Configuration;
-import org.springframework.social.connect.UsersConnectionRepository;
 import org.springframework.web.servlet.config.annotation.EnableWebMvc;
-import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
+import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
 import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
 
 
@@ -20,21 +18,13 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
 @EnableWebMvc
 public class WebMvcConfig extends WebMvcConfigurerAdapter
 {
-  @Inject
-  private UsersConnectionRepository usersConnectionRepository;
-
-
   /**
-   * Configure the {@link UserCookieInterceptor} to intercept all requests.
-   *
-   * @param registry
-   *     The {@link InterceptorRegistry} to use.
-   *
-   * @see {@link UserCookieInterceptor}
+   * {@inheritDoc}
    */
   @Override
-  public void addInterceptors(InterceptorRegistry registry)
+  public void addViewControllers(ViewControllerRegistry registry)
   {
-    registry.addInterceptor(new UserCookieInterceptor(usersConnectionRepository));
+    // Configure the view /thymeleaf/signin.html for the path /signin.html
+    registry.addViewController("/signin.html");
   }
 }