(no title)
tarkaTheRotter | 3 years ago
The SaaF design was used to design Finagle (Scala), and then it inspired http4k (Kotlin). There may be more that I'm not aware of. These libraries are often described as micro-frameworks - but this is misleading - it is only because the core is very small and can be easily extended by bolt-on modules.
twic|3 years ago
https://docs.oracle.com/en/java/javase/17/docs/api/jdk.https...
Because HttpHandler is a functional interface, you can write lambdas for it. Here is a little outline of a server:
https://gist.github.com/tomwhoiscontrary/b4888b86057c74a636c...
Sadly, Filter is not a functional interface, so it's much clunkier. It's also not really clear why you would use a filter when you can do function composition; i suspect they added filters because previous Java web frameworks had them.
dmix|3 years ago
Googling gave me a bunch of buzzword marketing sites and scared me off.