I liked to implement my own web server in pure Java, the web server should only support static resources (i.e. html, js, css, pics, movies, etc.)
Can you recommend a tutorial or article on how to implement such a thing? should I use multiple processes or a thread pool or should I consider a circular event oriented like NodeJS?
I know that there are free web servers that do exactly what I am looking for, but I wanted to do it as an existence for myself.
source
share