Grizzly在静态资产上设置标题

时间:2017-03-20 23:19:46

标签: java http-headers jersey-2.0 grizzly

我有一个jersey2 + Grizzly REST框架设置。除了动态操作之外,我还有类加载器处理程序来为我的ui提供静态资源,例如css,js等。我希望能够在这些上设置响应头来控制浏览器等缓存等内容。我不知道如何把它挂在灰熊框架中。

我这样做:

CLStaticHttpHandler myHandler = new CLStaticHttpHandler(Main.class.getClassLoader(), "ui/");
    myHandler.setFileCacheEnabled(true);
    httpServer.getServerConfiguration().addHttpHandler(myHandler, "/ui");

获取我的静态处理程序设置。关于如何挂钩并为这些静态资产设置响应头的任何想法?

0 个答案:

没有答案