web-frameworks

Should I use Vaadin Framework [closed]

旧时模样 提交于 2019-12-29 10:06:42
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 years ago . I just tried to play with Vaadin Framework and it seems to me very easy to use. Plus what I like about his framework is that it is built on top of Google Web Toolkit (GWT). What do you think, should I continue using this framework or it's better to stick with GWT? 回答1: Hey.

MVC or event-driven component-oriented web frameworks? [closed]

我怕爱的太早我们不能终老 提交于 2019-12-29 07:51:26
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . This question intends to be technology-agnostic. Which kind of web framework do you prefer, and when: Pure MVC or event-driven

Comparing Haskell's Snap and Yesod web frameworks

孤街醉人 提交于 2019-12-28 03:15:09
问题 The two Haskell web frameworks in the news recently are Yesod (at 0.8) and Snap (at 0.4). It's quite obvious that Yesod currently supports a lot more features than Snap. However, I can't stand the syntax Yesod uses for its HTML, CSS and Javascript. So, I'd like to understand what I'd be missing if I went with Snap instead. For example, doesn't look like database support is there. How about sessions? Other features? 回答1: Full disclosure: I'm one of the lead developers of Snap. First of all,

How to make CherryPy serve concurrent requests?

試著忘記壹切 提交于 2019-12-24 13:51:34
问题 I have read that cherrypy uses a threadpool of its own. But I am unable to see the advantage of that. Let's say I fire off a request which will take a long time and after that in another tab I fire off a request which will take a short time. If it really uses multithreading, the short request should complete before the long one. But I am seeing that first the long request gets completed and then the short time, as if everything is processed sequentially. I have tried integrating with

What exactly is a web application framework?

喜欢而已 提交于 2019-12-23 19:04:04
问题 I'm getting into python for cgi and came across Django. I'm not quite sure I understand it very much. Is it something I have to install inside apache or is it just something I can use with my cgi? Wanted to know because I'd love to learn it but my server I'm using doesn't give me a lot of privileges. thanks 回答1: While you could run a Python web framework on top of CGI, I don't think you want to: a web framework provides you with lots of extra functionality to make your coding easier, but part

Which web development framework works best with Google App Engine? [closed]

女生的网名这么多〃 提交于 2019-12-23 07:28:39
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 4 years ago . Now that Google allows Java on App Engine, I'm wondering what effect this has on a choice of web framework for App Engine. I realize Google provides the webapp framework which is pretty barebones. And the .96 version of django that's available for App Engine is restrictive.

Why don't Django and CherryPy support HTTP verb-based dispatch natively?

半世苍凉 提交于 2019-12-22 03:21:08
问题 It's not the same to POST to an URL than to GET it, DELETE it or PUT it. These actions are fundamentally different. However, Django seems to ignore them in its dispatch mechanism. Basically, one is forced to either ignore HTTP verbs completely or do this on every view: def my_view(request, arg1, arg2): if request.method == 'GET': return get_view(request, arg1, arg2) if request.method == 'POST': return post_view(request, arg1, arg2) return http.HttpResponseNotAllowed(['GET', 'POST']) The few

Vaadin alternative for heavily loaded UI

廉价感情. 提交于 2019-12-21 14:01:46
问题 Currently I am programming the Web Application based on Vaadin. I am quite happy with the learning cycle and the way how easy UI can be designed. In general pluses of Vaadin are: "Native" UI programming for Java users (component hierarchy / event listeners / drag & drop / validation). Out-of-box nice collection of components (tree / table / list / ...). The minuses are: Big and complex HTML output. That slows down the browser response time (also mentioned here and there) and leads to some

How do the Scala based frameworks stack up for a complete Scala newbie - Lift, Play, Circumflex, etc [closed]

﹥>﹥吖頭↗ 提交于 2019-12-20 09:18:47
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . There has been a lot of movement in the Scala based web framework community of late. Coming from Rails, Rake, ActiveRecord and

Why is Ruby more suitable for Rails than Python? [closed]

久未见 提交于 2019-12-20 08:18:09
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Python and Ruby are usually considered to be close cousins (though with quite different historical baggage) with similar