Remove obsolete raw servlets
[proteocache.git] / server / compbio / spring / WebConfig.java
index e7f0be2..be5e464 100644 (file)
@@ -3,6 +3,7 @@ package compbio.spring;
 import org.springframework.context.annotation.Bean;
 import org.springframework.context.annotation.ComponentScan;
 import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.ImportResource;
 import org.springframework.web.servlet.config.annotation.EnableWebMvc;
 import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
 import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
@@ -10,6 +11,7 @@ import org.springframework.web.servlet.view.InternalResourceViewResolver;
 
 @Configuration
 @EnableWebMvc
+@ImportResource("WEB-INF/spring-security.xml")
 @ComponentScan(basePackages = "compbio.controllers")
 public class WebConfig extends WebMvcConfigurerAdapter {
 
@@ -27,6 +29,6 @@ public class WebConfig extends WebMvcConfigurerAdapter {
                registry.addResourceHandler("/css/**").addResourceLocations("/css/");
                registry.addResourceHandler("/images/**").addResourceLocations("/images/");
                registry.addResourceHandler("/js/**").addResourceLocations("/js/");
+               registry.addResourceHandler("/results/**").addResourceLocations("/results/");
        }
-
-}
\ No newline at end of file
+}