本文整理汇总了Java中org.eclipse.jetty.server.handler.GzipHandler类的典型用法代码示例。如果您正苦于以下问题:Java GzipHandler类的具体用法?Java GzipHandler怎么用?Java GzipHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GzipHandler类属于org.eclipse.jetty.server.handler包,在下文中一共展示了GzipHandler类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: start
import org.eclipse.jetty.server.handler.GzipHandler; //导入依赖的package包/类
@Override
public void start(FolderContext music, MountContext mount, int port, String user, String password) throws Exception {
ServletContextHandler mountContext = new ServletContextHandler(ServletContextHandler.NO_SESSIONS);
mountContext.setContextPath(mount.getPath());
mountContext.setSecurityHandler(user == null ? null : basicAuthentication("MusicMount", user, password));
ServletHolder mountServlet = new ServletHolder(mount.getServlet());
mountContext.addServlet(mountServlet, "/*");
ServletContextHandler musicContext = new ServletContextHandler(ServletContextHandler.NO_SESSIONS);
musicContext.setContextPath(music.getPath());
musicContext.setSecurityHandler(user == null ? null : basicAuthentication("MusicMount", user, password));
musicContext.setBaseResource(Resource.newResource(music.getFolder()));
MimeTypes musicTypes = new MimeTypes();
musicTypes.addMimeMapping("m4a", "audio/mp4");
musicTypes.addMimeMapping("mp3", "audio/mpeg");
musicContext.setMimeTypes(musicTypes);
ServletHolder musicServlet = new ServletHolder(new DefaultServlet());
musicServlet.setInitParameter("dirAllowed", "false");
musicContext.addServlet(musicServlet, "/*");
GzipHandler gzipMountContext = new GzipHandler();
gzipMountContext.setMimeTypes(MimeTypes.TEXT_JSON);
gzipMountContext.setHandler(mountContext);
ContextHandlerCollection contexHandlers = new ContextHandlerCollection();
contexHandlers.setHandlers(new Handler[] { gzipMountContext, musicContext });
RequestLogHandler requestLogHandler = new RequestLogHandler();
requestLogHandler.setRequestLog(new ConsoleRequestLog());
HandlerCollection handlers = new HandlerCollection();
handlers.setHandlers(new Handler[]{ contexHandlers, new DefaultHandler(), requestLogHandler });
server = new Server(port);
server.setHandler(handlers);
server.setGracefulShutdown(1000);
server.setStopAtShutdown(true);
server.start();
}
开发者ID:beckchr,项目名称:musicmount,代码行数:40,代码来源:MusicMountServerJetty.java
示例2: doStart
import org.eclipse.jetty.server.handler.GzipHandler; //导入依赖的package包/类
@Override
protected void doStart() throws Exception {
server = new Server();
if (connector == null) {
connector = socketConnectorFactory.createConnector();
}
URI boundTo = bind();
ServletContextHandler contextHandler =
new ServletContextHandler(server, "/", ServletContextHandler.NO_SECURITY);
ServletHolder holder = new ServletHolder();
holder.setServlet(new HttpTunnelServlet());
contextHandler.addServlet(holder, "/");
contextHandler.setAttribute("acceptListener", getAcceptListener());
contextHandler.setAttribute("wireFormat", getWireFormat());
contextHandler.setAttribute("transportFactory", transportFactory);
contextHandler.setAttribute("transportOptions", transportOptions);
GzipHandler gzipHandler = new GzipHandler();
contextHandler.setHandler(gzipHandler);
server.start();
// Update the Connect To URI with our actual location in case the configured port
// was set to zero so that we report the actual port we are listening on.
int port = boundTo.getPort();
if (connector.getLocalPort() != -1) {
port = connector.getLocalPort();
}
setConnectURI(new URI(boundTo.getScheme(),
boundTo.getUserInfo(),
boundTo.getHost(),
port,
boundTo.getPath(),
boundTo.getQuery(),
boundTo.getFragment()));
}
开发者ID:DiamondLightSource,项目名称:daq-eclipse,代码行数:43,代码来源:HttpTransportServer.java
注:本文中的org.eclipse.jetty.server.handler.GzipHandler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论