步骤 1 : 拓扑图点亮 步骤 2 : 多应用 步骤 3 : 准备新的应用 步骤 4 : Context 步骤 5 : Bootstrap 步骤 6 : Request 步骤 7 : Bootstrap 步骤 8 : 单元测试 步骤 9 : 比较可运行项目,快速定位问题
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
Hello DIY Tomcat from index.html@a
Hello DIY Tomcat from index.html@a
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package cn.how2j.diytomcat.catalina;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.date.TimeInterval;
import cn.hutool.log.LogFactory;
public class Context {
private String path;
private String docBase;
public Context(String path, String docBase) {
TimeInterval timeInterval = DateUtil.timer();
this.path = path;
this.docBase = docBase;
LogFactory.get().info("Deploying web application directory {}", this.docBase);
LogFactory.get().info("Deployment of web application directory {} has finished in {} ms", this.docBase,timeInterval.intervalMs());
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getDocBase() {
return docBase;
}
public void setDocBase(String docBase) {
this.docBase = docBase;
}
}
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package cn.how2j.diytomcat;
import cn.how2j.diytomcat.catalina.Context;
import cn.how2j.diytomcat.http.Request;
import cn.how2j.diytomcat.http.Response;
import cn.how2j.diytomcat.util.Constant;
import cn.how2j.diytomcat.util.ThreadPoolUtil;
import cn.hutool.core.io.FileUtil;
import cn.hutool.core.thread.ThreadUtil;
import cn.hutool.core.util.ArrayUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.log.LogFactory;
import cn.hutool.system.SystemUtil;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
public class Bootstrap {
public static Map<String, Context> contextMap = new HashMap<>();
public static void main(String[] args) {
try {
logJVM();
scanContextsOnWebAppsFolder();
int port = 18080;
ServerSocket ss = new ServerSocket(port);
while(true) {
Socket s = ss.accept();
Runnable r = new Runnable(){
@Override
public void run() {
try {
Request request = new Request(s);
Response response = new Response();
String uri = request.getUri();
if(null==uri)
return;
System.out.println("uri:"+uri);
if("/".equals(uri)){
String html = "Hello DIY Tomcat from how2j.cn";
response.getWriter().println(html);
}
else{
String fileName = StrUtil.removePrefix(uri, "/");
File file = FileUtil.file(Constant.rootFolder,fileName);
if(file.exists()){
String fileContent = FileUtil.readUtf8String(file);
response.getWriter().println(fileContent);
if(fileName.equals("timeConsume.html")){
ThreadUtil.sleep(1000);
}
}
else{
response.getWriter().println("File Not Found");
}
}
handle200(s, response);
} catch (IOException e) {
e.printStackTrace();
}
}
};
ThreadPoolUtil.run(r);
}
} catch (IOException e) {
LogFactory.get().error(e);
e.printStackTrace();
}
}
private static void scanContextsOnWebAppsFolder() {
File[] folders = Constant.webappsFolder.listFiles();
for (File folder : folders) {
if (!folder.isDirectory())
continue;
loadContext(folder);
}
}
private static void loadContext(File folder) {
String path = folder.getName();
if ("ROOT".equals(path))
path = "/";
else
path = "/" + path;
String docBase = folder.getAbsolutePath();
Context context = new Context(path,docBase);
contextMap.put(context.getPath(), context);
}
private static void logJVM() {
Map<String,String> infos = new LinkedHashMap<>();
infos.put("Server version", "How2J DiyTomcat/1.0.1");
infos.put("Server built", "2020-04-08 10:20:22");
infos.put("Server number", "1.0.1");
infos.put("OS Name\t", SystemUtil.get("os.name"));
infos.put("OS Version", SystemUtil.get("os.version"));
infos.put("Architecture", SystemUtil.get("os.arch"));
infos.put("Java Home", SystemUtil.get("java.home"));
infos.put("JVM Version", SystemUtil.get("java.runtime.version"));
infos.put("JVM Vendor", SystemUtil.get("java.vm.specification.vendor"));
Set<String> keys = infos.keySet();
for (String key : keys) {
LogFactory.get().info(key+":\t\t" + infos.get(key));
}
}
private static void handle200(Socket s, Response response) throws IOException {
String contentType = response.getContentType();
String headText = Constant.response_head_202;
headText = StrUtil.format(headText, contentType);
byte[] head = headText.getBytes();
byte[] body = response.getBody();
byte[] responseBytes = new byte[head.length + body.length];
ArrayUtil.copy(head, 0, responseBytes, 0, head.length);
ArrayUtil.copy(body, 0, responseBytes, head.length, body.length);
OutputStream os = s.getOutputStream();
os.write(responseBytes);
s.close();
}
}
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package cn.how2j.diytomcat.http;
import cn.how2j.diytomcat.Bootstrap;
import cn.how2j.diytomcat.catalina.Context;
import cn.how2j.diytomcat.util.MiniBrowser;
import cn.hutool.core.util.StrUtil;
import java.io.IOException;
import java.io.InputStream;
import java.net.Socket;
public class Request {
private String requestString;
private String uri;
private Socket socket;
private Context context;
public Request(Socket socket) throws IOException {
this.socket = socket;
parseHttpRequest();
if(StrUtil.isEmpty(requestString))
return;
parseUri();
parseContext();
if(!"/".equals(context.getPath()))
uri = StrUtil.removePrefix(uri, context.getPath());
}
private void parseContext() {
String path = StrUtil.subBetween(uri, "/", "/");
if (null == path)
path = "/";
else
path = "/" + path;
context = Bootstrap.contextMap.get(path);
if (null == context)
context = Bootstrap.contextMap.get("/");
}
private void parseHttpRequest() throws IOException {
InputStream is = this.socket.getInputStream();
byte[] bytes = MiniBrowser.readBytes(is);
requestString = new String(bytes, "utf-8");
}
private void parseUri() {
String temp;
temp = StrUtil.subBetween(requestString, " ", " ");
if (!StrUtil.contains(temp, '?')) {
uri = temp;
return;
}
temp = StrUtil.subBefore(temp, '?', false);
uri = temp;
}
public Context getContext() {
return context;
}
public String getUri() {
return uri;
}
public String getRequestString(){
return requestString;
}
}
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package cn.how2j.diytomcat;
import cn.how2j.diytomcat.catalina.Context;
import cn.how2j.diytomcat.http.Request;
import cn.how2j.diytomcat.http.Response;
import cn.how2j.diytomcat.util.Constant;
import cn.how2j.diytomcat.util.ThreadPoolUtil;
import cn.hutool.core.io.FileUtil;
import cn.hutool.core.thread.ThreadUtil;
import cn.hutool.core.util.ArrayUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.log.LogFactory;
import cn.hutool.system.SystemUtil;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
public class Bootstrap {
public static Map<String, Context> contextMap = new HashMap<>();
public static void main(String[] args) {
try {
logJVM();
scanContextsOnWebAppsFolder();
int port = 18080;
ServerSocket ss = new ServerSocket(port);
while(true) {
Socket s = ss.accept();
Runnable r = new Runnable(){
@Override
public void run() {
try {
Request request = new Request(s);
Response response = new Response();
String uri = request.getUri();
if(null==uri)
return;
System.out.println("uri:"+uri);
Context context = request.getContext();
if("/".equals(uri)){
String html = "Hello DIY Tomcat from how2j.cn";
response.getWriter().println(html);
}
else{
String fileName = StrUtil.removePrefix(uri, "/");
File file = FileUtil.file(context.getDocBase(),fileName);
if(file.exists()){
String fileContent = FileUtil.readUtf8String(file);
response.getWriter().println(fileContent);
if(fileName.equals("timeConsume.html")){
ThreadUtil.sleep(1000);
}
}
else{
response.getWriter().println("File Not Found");
}
}
handle200(s, response);
} catch (IOException e) {
e.printStackTrace();
}
}
};
ThreadPoolUtil.run(r);
}
} catch (IOException e) {
LogFactory.get().error(e);
e.printStackTrace();
}
}
private static void scanContextsOnWebAppsFolder() {
File[] folders = Constant.webappsFolder.listFiles();
for (File folder : folders) {
if (!folder.isDirectory())
continue;
loadContext(folder);
}
}
private static void loadContext(File folder) {
String path = folder.getName();
if ("ROOT".equals(path))
path = "/";
else
path = "/" + path;
String docBase = folder.getAbsolutePath();
Context context = new Context(path,docBase);
contextMap.put(context.getPath(), context);
}
private static void logJVM() {
Map<String,String> infos = new LinkedHashMap<>();
infos.put("Server version", "How2J DiyTomcat/1.0.1");
infos.put("Server built", "2020-04-08 10:20:22");
infos.put("Server number", "1.0.1");
infos.put("OS Name\t", SystemUtil.get("os.name"));
infos.put("OS Version", SystemUtil.get("os.version"));
infos.put("Architecture", SystemUtil.get("os.arch"));
infos.put("Java Home", SystemUtil.get("java.home"));
infos.put("JVM Version", SystemUtil.get("java.runtime.version"));
infos.put("JVM Vendor", SystemUtil.get("java.vm.specification.vendor"));
Set<String> keys = infos.keySet();
for (String key : keys) {
LogFactory.get().info(key+":\t\t" + infos.get(key));
}
}
private static void handle200(Socket s, Response response) throws IOException {
String contentType = response.getContentType();
String headText = Constant.response_head_202;
headText = StrUtil.format(headText, contentType);
byte[] head = headText.getBytes();
byte[] body = response.getBody();
byte[] responseBytes = new byte[head.length + body.length];
ArrayUtil.copy(head, 0, responseBytes, 0, head.length);
ArrayUtil.copy(body, 0, responseBytes, head.length, body.length);
OutputStream os = s.getOutputStream();
os.write(responseBytes);
s.close();
}
}
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package cn.how2j.diytomcat.test;
import cn.how2j.diytomcat.util.MiniBrowser;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.date.TimeInterval;
import cn.hutool.core.util.NetUtil;
import cn.hutool.core.util.StrUtil;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
public class TestTomcat {
private static int port = 18080;
private static String ip = "127.0.0.1";
@BeforeClass
public static void beforeClass() {
//所有测试开始前看diy tomcat 是否已经启动了
if(NetUtil.isUsableLocalPort(port)) {
System.err.println("请先启动 位于端口: " +port+ " 的diy tomcat,否则无法进行单元测试");
System.exit(1);
}
else {
System.out.println("检测到 diy tomcat已经启动,开始进行单元测试");
}
}
@Test
public void testHelloTomcat() {
String html = getContentString("/");
Assert.assertEquals(html,"Hello DIY Tomcat from how2j.cn");
}
@Test
public void testTimeConsumeHtml() throws InterruptedException {
ThreadPoolExecutor threadPool = new ThreadPoolExecutor(20, 20, 60, TimeUnit.SECONDS,
new LinkedBlockingQueue<Runnable>(10));
TimeInterval timeInterval = DateUtil.timer();
for(int i = 0; i<3; i++){
threadPool.execute(new Runnable(){
public void run() {
getContentString("/timeConsume.html");
}
});
}
threadPool.shutdown();
threadPool.awaitTermination(1, TimeUnit.HOURS);
long duration = timeInterval.intervalMs();
Assert.assertTrue(duration < 3000);
}
@Test
public void testaIndex() {
String html = getContentString("/a/index.html");
Assert.assertEquals(html,"Hello DIY Tomcat from index.html@a");
}
private String getContentString(String uri) {
String url = StrUtil.format("http://{}:{}{}", ip,port,uri);
String content = MiniBrowser.getContentString(url);
return content;
}
}
增值内容,请先登录
自己写一个Tomcat, 几乎使用到了除开框架外的所有Java 技术,如多线程,Socket, J2EE, 反射,Log4j, JSoup, JUnit, Html 等一整套技术栈, 从无到有,循序渐进涵盖全部74个知识点,549个开发步骤, 为竞争高薪资职位加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。
问答区域
2021-04-12
Jsoup解析xml文件异常
回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
2021-01-29
String path = StrUtil.subBetween(uri,"/","/")
回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
2020-11-24
没有对应 Context 的情况
2020-08-15
fileName 有bug
提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
|