タグ

jettyに関するKishiのブックマーク (3)

  • Lingr and Comet - 技術解説編:Kenn's Clairvoyance


    CometLingr Comet Comet WebURL  
    Lingr and Comet - 技術解説編:Kenn's Clairvoyance
  • IBM Developer

    IBM Developer is your one-stop location for getting hands-on training and learning in-demand skills on relevant technologies such as generative AI, data science, AI, and open source.

    IBM Developer
  • Jettyを組み込んでWEBアプリケーションを配布 - Enjoy*Study

    Selenium RC が サーブレットコンテナを使っているらしく、なんで jar としてWEBアプリケーションを起動できるんだーと不思議に思っていたら、Jettyだと他のアプリケーションに組み込んで使えるとのこと。 しかも、web.xmlも不要で、オブジェクトを組み立てていくような感じでサーバを起動することが出来たりします。 public static void main(String[] args) throws Exception { SelectChannelConnector connector = new SelectChannelConnector(); connector.setPort(8888); Server server = new Server(); server.setConnectors(new Connector[] { connector }); // コ

    Jettyを組み込んでWEBアプリケーションを配布 - Enjoy*Study
  • 1