Bootstrapping a web server in Scala

后端 未结 8 1702
走了就别回头了
走了就别回头了 2021-02-01 10:32

The following is possible using Python:

$ apt-get install python
$ easy_install Flask
$ cat > hello.py
from flask import Flask
app = Flask(__name__)

@app.rou         


        
相关标签:
8条回答
  • 2021-02-01 11:07

    Well, there's Scalatra, which aims to be analogous to Ruby's Sinatra in terms of functionality and ease of use.

    0 讨论(0)
  • 2021-02-01 11:09

    You might find Unfiltered worth a look.

    0 讨论(0)
提交回复
热议问题