Atitit。Web server Jetty9 使用 attilax 总结

时间:2022-08-22 00:42:48

Atitit。Web server Jetty9 使用 attilax 总结

1.1. 静态文件的资源1

1.2. Servlet使用1

1.3. code1

1.1. 静态文件的资源

WebAppContext context = new WebAppContext();

// context.setcon

context.setContextPath("/");

context.setResourceBase(webAppPath); // "c:\\0e"

context.addServlet(new ServletHolder(new WrmiServlet()), "/wrmiServlet");

server.setHandler(context);

1.2. Servlet使用

context.addServlet(new ServletHolder(new WrmiServlet()), "/wrmiServlet");

作者::  ★(attilax)>>>   绰号:老哇的爪子 ( 全名::Attilax Akbar Al Rapanui 阿提拉克斯 阿克巴 阿尔 拉帕努伊 ) 汉字名:艾龙,  EMAIL:1466519819@qq.com

转载请注明来源: http://www.cnblogs.com/attilax/

1.3. code

package aaaAddr;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import javax.servlet.ServletException;

import javax.servlet.ServletOutputStream;

import java.io.IOException;

import java.io.InputStream;

import java.io.OutputStream;

import java.net.URI;

import java.net.URISyntaxException;

import java.net.URLEncoder;

//import jcifs.smb.SmbFile;

import org.eclipse.jetty.server.Handler;

import org.eclipse.jetty.server.Server;

import org.eclipse.jetty.server.Request;

import org.eclipse.jetty.server.handler.AbstractHandler;

import org.eclipse.jetty.servlet.ServletHolder;

import org.eclipse.jetty.webapp.WebAppContext;

import org.slf4j.helpers.MessageFormatter;

import org.eclipse.jetty.webapp.WebAppContext;

import com.attilax.io.filex;

import com.attilax.io.pathx;

import com.attilax.lang.Global;

//import com.attilax.net.urlEncode;

import com.attilax.web.UrlX;

import com.attilax.wrmi.WrmiServlet;

/**jetty 9.3.7

* aaaAddr.jetty4xssServer

* @author Administrator

*

*/

public class jetty4boxSys extends AbstractHandler

{

//  private String smb;

public void handle(String target,

Request baseRequest,

HttpServletRequest request,

HttpServletResponse response)

throws IOException, ServletException

{

System.out.println("--taget:"+target);  ///wrmiServlet  zosh uri

if(target.equals("/wrmiServlet"))

new WrmiServlet().service(request, response);

//   response.setStatus(HttpServletResponse.SC_OK);

baseRequest.setHandled(true);

}

private void convertStream(InputStream in,

OutputStream out) {

//    InputStream  in = new FileInputStream(srcFile);

//          out = new FileOutputStream(destFile);

byte[] buffer = new byte[1024];

int byteread;

try {

while ((byteread = in.read(buffer)) != -1) {

out.write(buffer, 0, byteread);

}

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

throw new RuntimeException(e);

}

try {

in.close();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}try {

out.close();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

/**

* http://127.0.0.1:7777/?smb=smb%3A%2F%2F192.168.2.106%2Fe%2F%E9%9D%9E%E8%93%9D%E5%85%89%2F9%E8%B7%AF%E5%86%A5%E5%A9%9A%2F9%E8%B7%AF%E5%86%A5%E5%A9%9A-fanart.jpg

* http://127.0.0.1:7777/?smb=smb%3A%2F%2F192.168.2.106%2Fe%2F%E9%9D%9E%E8%93%9D%E5%85%89%2F9%E8%B7%AF%E5%86%A5%E5%A9%9A%2F9%E8%B7%AF%E5%86%A5%E5%A9%9A.mkv

* @param args

* @throws Exception

*/

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

{

System.setProperty("iocName","aaaCfg.Ioc4timer");

Global. iocCur="aaaCfg.Ioc4timer";

// HttpSessionIdListener

//HttpSessionIdListener

//MessageFormatter.arrayFormat(messagePattern, argArray)

System.setProperty("prj","jobus");//指明是运行的哪个项目

Server server = new Server(8009);

//   ServletContextHandler

WebAppContext context = new WebAppContext();

//   context.setcon

context.setContextPath("/");

try {

Object resourceBase;  //jetty4boxSys.class.getResource(resourceBase).toURI().toASCIIString()

String webAppPath = pathx.webAppPath();

//webAppPath=com.attilax.net.URLEncoder.encode(webAppPath);

//URI uri=new URI(webAppPath);

//String resBase = uri.toString();

System.out.println(webAppPath);

context.setResourceBase(webAppPath);  //"c:\\0e"

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

context.addServlet(new ServletHolder(new WrmiServlet()), "/wrmiServlet");

server.setHandler(context);

//    server.setHandler(new jetty4boxSys());

server.start();

System.out.println("--staered jetty9.3.7");

server.join();

System.out.println("--f");

}

//private jettyFileServer setSmb(String smb) {

//this.smb=smb;

//return this;

//}

}

------finish

Atitit。Web server Jetty9 使用 attilax 总结的更多相关文章

  1. atitit.web原理 理论attilax总结

    atitit.web原理 理论attilax总结 1. Web3.01 2. Web的未来趋势1 3. Web语言与应用导论_百度百科.html2 4. <Web设计与编程导论(影印版)> ...

  2. Atitit&period;Gui控件and面板----web server区----- web服务器监控面板and控制台条目

    Atitit.Gui控件and面板----web server区----- web服务器监控面板and控制台条目 1. Resin4.0.22 1 2. 查看http连接数::Summary>& ...

  3. Atitit&period;web的自动化操作与信息抓取&&num;160&semi;attilax总结

    Atitit.web的自动化操作与信息抓取 attilax总结 1. Web操作自动化工具,可以简单的划分为2大派系: 1.录制回放 2.手工编写0 U' z; D! s2 d/ Q! ^1 2. 常 ...

  4. atitit&period;Windows Server 2003 2008 2012系统的新特性 attilax 总结

    atitit.Windows Server 2003  2008  2012系统的新特性 attilax 总结 1. Windows Server 2008 新特性也可以归纳为4个方面. 1 2. 相 ...

  5. Atitit web remote远程调试的原理attilax总结

    Atitit web remote远程调试的原理attilax总结 Jvm是vm打开一个debug port,然后ide先连接..然后执行url,就会vm会与ide沟通.. Php的xdebug po ...

  6. Atitit&period;python&&num;160&semi;web环境的配置&&num;160&semi;attilax&&num;160&semi;总结

    Atitit.python web环境的配置 attilax 总结 1. 下载modpython/1 1.1. 安装python2.5.11 1.2. 安装modpython1 2. 设置py文件的u ...

  7. Atitit osi tcp ip 对应attilax总结

    Atitit osi tcp ip 对应attilax总结 Atitit 网络摄像机又叫IP CAMERA(简称IPC)常见的协议组合 网络摄像机又叫IP CAMERA(简称IPC)由网络编码模块和模 ...

  8. atitit&period; web 在线文件管理器最佳实践&lpar;1&rpar;--- elFinder 的使用流程解决之道 。打开浏览服务器文件夹java &period;net php

    atitit. web 在线文件管理器最佳实践(1)--- elFinder 的使用流程解决之道 .打开浏览服务器文件夹java .net php 1. 环境:::项目java web,需要打开浏览服 ...

  9. atitit&period;web的动态include 跟变量传递 java &period;net php

    atitit.web的动态include 跟变量传递 java .net php 1. 动态include  <jsp:include 1 2. 使用QueryString 1 3. 使用Ses ...

随机推荐

  1. bx、si、di 和 bp

    bx.si.di 和 bp 在 8086CPU 中,只有这 4 个寄存器可以用在 "[...]" 中来进行内存单元的寻址. mov ax, [bx] mov ax, [bx+si] ...

  2. Ubuntu&plus;Win7&plus;Samba实现文件共享

    Samba是Ubuntu和Windows进行网络共享的工具,比如分享打印机,互相之间传输资料文件. 安装samba sudo apt-get install samba 查看samba是否安装成功 s ...

  3. 图片切换效果,纯js

    公司有个技术很牛x的“老腊肉”,我向他请教,他给了我个网址,上面蛮多效果的,于是乎~我决定照着效果看能不能自己敲出来,我要变大神X3,重要的事说3遍. 它完成的效果是这样的: 好吧,一步一步来,先把框 ...

  4. CentOS Android Studio桌面图标的创建

    1.切换到root用户,在桌面上创建Android.Studio.desktop,如下: [Desktop Entry] Name=Android Studio Comment=Android Stu ...

  5. React常见的15个问题

    在 jsComplete,我们管理一个专门用于帮助编程学习者 slack 帐户.我们常常会收到一些有趣的问题,但大多数问题都是常见问题. 我创建这个资源为了帮助 React.js学习者遇到这些常见的问 ...

  6. string&period;Format出现异常:输入字符串的格式不正确 Exception during StringFormat

    错误信息:Exception during StringFormat:输入字符串的格式不正确 “System.FormatException”类型的未经处理的异常在 mscorlib.dll 中发生 ...

  7. A1056&period; Mice and Rice

    Mice and Rice is the name of a programming contest in which each programmer must write a piece of co ...

  8. Unity 3D-Canvas画布的三种模式

    Unity开发VR之Vuforia 本文提供全流程,中文翻译. Chinar 坚持将简单的生活方式,带给世人!(拥有更好的阅读体验 -- 高分辨率用户请根据需求调整网页缩放比例) Chinar -- ...

  9. ADO&period;NET Entity Framework -Code Fisrt 开篇(一)

    ADO.NET Entity Framework -Code Fisrt 开篇(一) 2012-12-25 15:13 by 易code, 911 阅读, 0 评论, 收藏, 编辑 ADO.NET E ...

  10. VS中自定义C&num;快速简写代码

     首先在VS中找到工具——代码片段管理器——语言选择(CSharp)——Visual C#——赋值路径——根据路径找到对应的代码片段用VS打开 修改: Title——标题 ShortCut——缩写 D ...