【发布时间】:2015-08-27 13:24:13
【问题描述】:
我有以下课程
@Configuration
public class WebConfiguration {
@Bean
public ServletRegistrationBean slspServlet() {
ServletRegistrationBean testServlet = new ServletRegistrationBean(new TestServlet());
testServlet.addUrlMappings("/*");
testServlet.setAsyncSupported(true);
return TestServlet;
}
@Bean
public ServletRegistrationBean aliveServlet() {
ServletRegistrationBean aliveServlet = new ServletRegistrationBean(new AliveServlet());
aliveServlet.addUrlMappings("/alive/*");
aliveServlet.setLoadOnStartup(3);
return aliveServlet;
}
@Bean
public ServletRegistrationBean templateDownloaderServlet(){
ServletRegistrationBean templateDownloader = new ServletRegistrationBean(new TemplateDownloaderServlet());
templateDownloader.addUrlMappings("/template/download/*");
templateDownloader.setLoadOnStartup(2);
return templateDownloader;
}
@Bean
public ServletRegistrationBean endOfGenerationThreadServlet(){
ServletRegistrationBean endOfGenerationThread = new ServletRegistrationBean(new EndOfGenerationThreadServlet());
endOfGenerationThread.addUrlMappings("/endofgenerationthread/*");
endOfGenerationThread.setLoadOnStartup(1);
return endOfGenerationThread;
}
@Bean
public ServletRegistrationBean dispatcherServlet(){
ServletRegistrationBean dispatcherServlet = new ServletRegistrationBean(new DispatcherServlet());
dispatcherServlet.setName("dispatcherServlet");
dispatcherServlet.addUrlMappings("/dispatcher/*");
return dispatcherServlet;
}
@Bean
public FilterRegistrationBean errorPageFilter(){
FilterRegistrationBean errorPageFilter = new FilterRegistrationBean(new ErrorPageFilter(), dispatcherServlet());
errorPageFilter.addUrlPatterns("/test/*");
return errorPageFilter;
}
@Bean
public FilterRegistrationBean characterEncodingFilter(){
FilterRegistrationBean characterEncodingFilter = new FilterRegistrationBean(new CharacterEncodingFilter(), dispatcherServlet());
characterEncodingFilter.addUrlPatterns("/test/*");
return characterEncodingFilter;
}
@Bean
public FilterRegistrationBean hiddenHttpMethodFilter(){
FilterRegistrationBean hiddenHttpMethodFilter = new FilterRegistrationBean(new HiddenHttpMethodFilter(), dispatcherServlet());
hiddenHttpMethodFilter.addUrlPatterns("/test/*");
return hiddenHttpMethodFilter;
}
}
我想要做的是更改 hiddenHttpMethodFilter、characterEncodingFilter、errorPageFilter 的过滤器映射,以便我有映射 /test/*。 当我启动应用程序时,我可以看到它默认为“/*”
Mapping servlet: 'testServlet' to [/*]
Mapping servlet: 'aliveServlet' to [/alive/*]
Mapping servlet: 'templateDownloaderServlet' to [/template/download/*]
Mapping servlet: 'endOfGenerationThreadServlet' to [/endofgenerationthread/*]
Mapping servlet: 'dispatcherServlet' to [/dispatcher/*]
Mapping filter: 'errorPageFilter' to: [/*]
Mapping filter: 'characterEncodingFilter' to: [/*]
Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
我缺少什么或我的配置有什么问题?我正在使用 spring-boot 1.2.5。
过滤器还有另一个问题(我认为这在过滤器中)。当我想在我的 testServlet 中访问 request.getInputstream() 时,它已经被读取了。我还阅读了this question 并尝试实现RequestWrapper,但是在我的testServlet 中包装请求为时已晚,因为已读取输入流。那么有人可以帮我解决这个问题吗?
谢谢
【问题讨论】:
标签: java spring spring-boot httprequest