/cross-store/src/main/java/org/cloudfoundry/config/WebConfiguration.java

http://github.com/SpringSource/cloudfoundry-samples · Java · 49 lines · 41 code · 8 blank · 0 comment · 0 complexity · 4de5c617a1882a05e4c1dfeb8c237029 MD5 · raw file

  1. package org.cloudfoundry.config;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.ComponentScan;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.context.annotation.Import;
  6. import org.springframework.data.mongodb.examples.custsvc.web.CloudFoundryEnvironmentHandlerInterceptor;
  7. import org.springframework.web.servlet.config.annotation.*;
  8. import org.springframework.web.servlet.view.InternalResourceViewResolver;
  9. @Configuration
  10. @EnableWebMvc
  11. @Import(ServicesConfiguration.class)
  12. @ComponentScan("org.springframework.data.mongodb.examples.custsvc.web")
  13. public class WebConfiguration extends WebMvcConfigurerAdapter {
  14. @Override
  15. public void addResourceHandlers(ResourceHandlerRegistry registry) {
  16. registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
  17. }
  18. @Bean
  19. public CloudFoundryEnvironmentHandlerInterceptor interceptor() {
  20. return new CloudFoundryEnvironmentHandlerInterceptor();
  21. }
  22. @Override
  23. public void addInterceptors(InterceptorRegistry registry) {
  24. registry.addInterceptor(this.interceptor());
  25. }
  26. @Override
  27. public void addViewControllers(ViewControllerRegistry registry) {
  28. registry.addViewController("/").setViewName("index");
  29. }
  30. @Override
  31. public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
  32. configurer.enable();
  33. }
  34. @Bean
  35. public InternalResourceViewResolver internalResourceViewResolver() {
  36. InternalResourceViewResolver ir = new InternalResourceViewResolver();
  37. ir.setPrefix("/WEB-INF/views/");
  38. ir.setSuffix(".jsp");
  39. return ir;
  40. }
  41. }