-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMvcWebConfig.java
60 lines (50 loc) · 2.37 KB
/
MvcWebConfig.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package gov.nih.nci.bento;
import gov.nih.nci.bento.interceptor.AuthenticationInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.CacheControl;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.ViewResolverRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.web.servlet.view.InternalResourceViewResolver;
import org.springframework.web.servlet.view.JstlView;
import java.util.concurrent.TimeUnit;
@Configuration
@EnableWebMvc
@ComponentScan
public class MvcWebConfig implements WebMvcConfigurer {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
InternalResourceViewResolver resolver = new InternalResourceViewResolver();
resolver.setPrefix("/WEB-INF/");
resolver.setSuffix(".jsp");
resolver.setViewClass(JstlView.class);
registry.viewResolver(resolver);
registry.jsp();
}
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
// Register static
registry.addResourceHandler("/static/**").addResourceLocations("/WEB-INF/static/")
.setCacheControl(CacheControl.maxAge(2, TimeUnit.HOURS).cachePublic());
registry.addResourceHandler("/resources/**").addResourceLocations("/WEB-INF/resources/")
.setCacheControl(CacheControl.maxAge(2, TimeUnit.HOURS).cachePublic());
registry.addResourceHandler("/*.html").addResourceLocations("/WEB-INF/")
.setCacheControl(CacheControl.maxAge(2, TimeUnit.HOURS).cachePublic());
registry.addResourceHandler("/*.js").addResourceLocations("/WEB-INF/")
.setCacheControl(CacheControl.maxAge(2, TimeUnit.HOURS).cachePublic());
registry.addResourceHandler("/*.json").addResourceLocations("/WEB-INF/")
.setCacheControl(CacheControl.maxAge(2, TimeUnit.HOURS).cachePublic());
}
@Bean
AuthenticationInterceptor authenticationInterceptor() {
return new AuthenticationInterceptor();
}
@Override
public void addInterceptors(final InterceptorRegistry registry) {
registry.addInterceptor(authenticationInterceptor());
}
}