zoukankan      html  css  js  c++  java
  • Jetty使用

    目标:在Linux以及Windows下面配置应用;

    之前使用过smartfox,安装的时候弹出一个浏览器,一路next,印象很深刻。只是记得他是使用Jetty。最近做的项目也是需要进行配置;过往都是使用SWT进行制作;但是此次有一个网页版的监控程序,我的想法就是连带着配置程序一起坐到这个监控程序中。

    Jetty是内嵌式的Servlet容器;启动一个执行html的很简单,但是启动一个Jsp的工程,则需要多写几步,左后是启动默认浏览器并跳转到指定的页面:

        public static void main(String[] args)throws Exception{

            Server server = new Server();

    Connector connector = new SelectChannelConnector();

    connector.setPort(8080);

    server.setConnectors(new Connector[] { connector });

    WebAppContext webAppContext = new WebAppContext("WebContent","/");

    webAppContext.setDescriptor("WebContent/WEB-INF/web.xml");

    webAppContext.setResourceBase("WebContent/WEB-INF");

    webAppContext.setDisplayName("jetty");

    webAppContext.setClassLoader(Thread.currentThread().getContextClassLoader());

    webAppContext.setConfigurationDiscovered(true);

    webAppContext.setParentLoaderPriority(true);

    server.setHandler(webAppContext);

     

    try{

    server.start();

    StartBrowser browser = new StartBrowser();

    browser.openURL("http://localhost:" + 8080);

    }catch(Exception e){

        e.printStackTrace();

    }

    }

    OpenUrl的实现:

        public void openURL(String sURL) {

    try {

    URI uri = new URI(sURL);

    Desktop desktop = null;

    if (Desktop.isDesktopSupported()) {

    desktop = Desktop.getDesktop();

    }

    if (desktop != null)

    desktop.browse(uri);

    } catch (Exception e){

    e.printStackTrace();

    }

    }

    webAppContext.setResourceBase这句话比较重要,设置了你的那些JSP页面到哪里去找。比如此次我的JSP就是放在WEB-INF的下面。

    另外openUrl切记前面要添加http;否则程序判断不出来应用程序走的协议,将不会启动浏览器进行处理。

    这段代码已经验证在Win8,以及CentOS中可用。

     

     

  • 相关阅读:
    【引用】关于closeonexec标志
    CentOS解决编码问题
    /etc/init.d/functions (转)
    centos 安装 中文 支持 语言包(转)
    vsftpd 530 错误
    __FILE__,__LINE__,FUNCTION__实现代码跟踪调试(linux下c语言编程)(转)
    C语言中可变参数的用法 va_start va_end(转)
    守护进程 setsid(转)
    /dev/null 重定向 ./sh >/dev/null 2>&1
    C# 子类调用父类构造函数
  • 原文地址:https://www.cnblogs.com/xiashiwendao/p/5929781.html
Copyright © 2011-2022 走看看