Ask HN: Any good tutorial or books on how to build a web framework?
Hi, I am looking for some good tutorials or books on how to build a web framework from scratch, the platform of interest is the JVM and I would like to know more about basic concepts such as routing, filtering and how the request/response cycle is handled.
2 comments
[ 2.0 ms ] story [ 8.7 ms ] threadYou can start with sparkjava: https://github.com/perwendel/spark/
Also, multi-threading, I/O and networking are areas that you would need to understand inside out.
The tendency toward bottom up development is probably a reason there are so many frameworks...everyone has different practices that need automating.