问题
I successfully deployed the demo web app that comes with Jython. It uses modjy which is a Jython WSGI gateway. I'm now trying to hook modjy to my Flask app. I get a handler not defined error.
The full traceback is here: http://pastie.org/2810227
回答1:
There are two different ways you can specify an application to modjy:
- Using the app_import_name mechanism
- Using a combination of app_directory/app_filename/app_callable_name
For the first method simply create a file that imports your Flask app object.
from my_flask_app import app as application
Then in your web.xml set the proper init-param:
<init-param>
<param-name>app_import_name</param-name>
<param-value>wsgi.application</param-value>
</init-param>
For the second method you can use the modjy convention of defining application.py in the servlet context root with a single handler method that invokes the Flask WSGI app:
def handler(environ, start_response):
return application.wsgi_app(environ, start_response)
来源:https://stackoverflow.com/questions/8010517/whats-the-best-way-to-deploy-a-flask-app-using-jython-on-tomcat