我试图在我的WebApplicationInitializer
中设置多个servlet,一个用于默认请求(触发jsp并使用DispatcherServlet
返回html,一个用于静态资源,使用定制的StaticServlet
。令我困惑的是如何应用路由来获取对正确的servlet的请求,实际上从来没有调用静态servlet来解析请求似乎证实了我的怀疑。到目前为止是我在WebApplicationInitializer
上的代码:
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
servletContext.setSessionTrackingModes(
Collections.<SessionTrackingMode>emptySet());
// Create the 'root' Spring application context
// which will contain the application components
AnnotationConfigWebApplicationContext rootContext
= new AnnotationConfigWebApplicationContext();
rootContext.register(RootConfig.class);
// Manage the lifecycle of the root application context
servletContext.addListener(new ContextLoaderListener(rootContext));
// Create the dispatcher servlet's Spring application context
// to contain dispatched beans such as controllers
AnnotationConfigWebApplicationContext dispatcherContext
= new AnnotationConfigWebApplicationContext();
dispatcherContext.register(DispatcherConfig.class);
// Register and map the dispatcher servlet under /
ServletRegistration.Dynamic dispatcher = servletContext.addServlet(
"dispatcher",
new DispatcherServlet(dispatcherContext));
dispatcher.setLoadOnStartup(1);
dispatcher.addMapping("/");
// Register and map the static dispatcher servlet under /static/*
ServletRegistration.Dynamic staticDispatcher = servletContext.addServlet(
"staticDispatcher",
new FileServlet());
staticDispatcher.setLoadOnStartup(1);
staticDispatcher.setInitParameter("basePath", "/static/fonts/");
staticDispatcher.addMapping("/static/*");
静态Servlet
不需要Configuration
(是基础HttpServlet
),但令我困扰的是我使用两个ServletRegistration
以便定义两个不同的映射。有没有办法使用相同的方法并定义到特定servlet的映射?或者映射是否应该在另一个级别(可能是rootContext
的监听器)完成?我试图环顾四周,但似乎没有人解决或有任何问题(可能)以编程方式设置多个servlet。
我知道为什么我没有对静态Servlet
进行任何打击?
这是我的一个.jsp文件中的静态文件请求,它应该通过FileServlet
:
<style type="text/css">
@font-face {
font-family: 'DinWeb';
src: url(/static/fonts/DINWeb.eot?) format('eot'), url(/static/fonts/DINWeb.woff) format('woff'), url(/static/fonts/DINComp.ttf) format('truetype');
font-weight: normal;
}
</style>
我期望将请求重定向到FileServlet
(因为url以/ static /开头),并且从那里进行操作/管理以便它返回字体(或文件或另一个媒体)
答案 0 :(得分:0)
创建了另一个解决方案:不要生成两个DispactherServlet
(或者一个和另一个),而是实现一个servlet和一个Filter
来监听所有请求,并处理那些启动的URL与静态。
在我的代码中,我添加了这两行:
FilterRegistration filterReg = servletContext.addFilter("staticFilter", StaticFilesFilter.class);
filterReg.addMappingForUrlPatterns(null, false, "/*");
并完全删除了第二个自定义servlet。根据过滤器,这个link非常有用(只需单击下载以查看过滤器实现本身的java文件)。