web-frameworks

Web interface for a twisted application

回眸只為那壹抹淺笑 提交于 2019-11-30 04:09:35
I have a application written in Twisted and I want to add a web interface to control and monitor it. I'll need plenty of dynamic pages that show the current status and configuration, so I hoped for a framework that offers at least a templating language with inheritance and some basic routing. Since I am using Twisted anyways I wanted to use twisted.web - but it's templating language is too basic and it seems that the only framework, Nevow is quite dead (it's on launchpad but the homepage and wiki are down and I can't find any documentation). So what are my options? Is there any other twisted

Web “frameworks” for Haxe to deploy in a PHP environment?

让人想犯罪 __ 提交于 2019-11-30 04:04:38
Lately I've been taking a look at Haxe , to build an application to be deployed to Apache running PHP. Well, while it looks like it might suit my needs (deploying to PHP, but not using an awful language), I haven't found anything to make the actual application development easier than building a traditional non-MVC PHP app. Are there any toolkits/frameworks that I'm missing, that would be worthwhile? It'd be nice if it were MVC inspired, and I'd definitely want an easy way to use nice URLS, though I could settle for mod_rewrite rules if necessary. Edit: The idea is to not use something like

JSF vs Stripes, which is best? [closed]

雨燕双飞 提交于 2019-11-29 20:25:43
问题 Which is best, or in other words, whish is easiest to use? Stripes or JSF. Although I haven't used both in anger I need to gauge what is the best option to work with for both starting new projects and converting existing Struts projects. I have a fear that JSF won't render as nicely as I want but what are others experiences? Seems Stripes is far more straight forward, would I be correct in this assumption? 回答1: Which is best, or in other words, which is easiest to use? Stripes or JSF. Which

Simple Java web framework [closed]

泄露秘密 提交于 2019-11-29 19:05:21
Is there any simple java web framework like sinatra (for ruby) or web.py (for python)? If you want a strict Java framework Spark might be an alternative: import static spark.Spark.*; public class HelloWorld { public static void main(String[] args) { get("/hello", (req, res) -> "Hello World"); } } Play . Haven't tried it myself but heard only good things about it and seems to be quite beginner-friendly. I think the simplest thing to do to generate web content via Java is to write a Servlet. Just like web.py allows you to define a GET method, you can implement a Servlet's doGet() method and

Should I use Vaadin Framework [closed]

余生颓废 提交于 2019-11-29 19:03:10
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? Jens Jansson Hey. As a disclaimer, I work for the company developing Vaadin. Vaadin uses GWT in a way that it has a set of components precompiled in GWT. You can, of course, additionally make your own components if you so want to. However, the set of components is quite complete, and can often be customized for your own need. This

Comparison of Clojure web frameworks [closed]

▼魔方 西西 提交于 2019-11-29 18:47:20
There are a few web frameworks for Clojure Compojure Webjure Conjure Moustache and also some libraries for dealing with certain web development subtasks, such as Enlive for templating Hiccup for templating Ring to handle lower level stuff with requests/responses ClojureQL for persistence (it doesn't seem very active, though) There are also hundreds of Java libraries to be used. Some aspects were already discussed here and two of them compared a bit . I wonder how these frameworks/components compare in terms of maturity, scope, ease of development, Django/RoR feeling, etc. When I first started

Now with GWT 2, what are the advantages over wicket and likewise?

大城市里の小女人 提交于 2019-11-29 14:05:44
问题 Apart from the argument of Wicket's simplicity (that is, Wicket is a simpler system IMHO) and GWT's responsiveness in the client (GWT's client side state and JavaScript - potentially complex client side code) and GWT's greater potential for scaling, what is the argument for using GWT over Wicket? Personally I've done a lot of Wicket development, but have only had a quick look at GWT a long time ago. 回答1: The advantages are, basically, that GWT is a tool to build javascript-based client, thus,

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

社会主义新天地 提交于 2019-11-29 11:01:35
This question intends to be technology-agnostic. Which kind of web framework do you prefer, and when: Pure MVC or event-driven component-oriented? Just to make the point in "technology-agnosticism", here I name a few MVC vs. component web frameworks, in diverse technologies / languages: Struts vs. Java Server Faces / Tapestry The new ASP.NET MVC vs. "classic" ASP.NET Cake PHP vs. PRADO I'm a php dev by day; however, I strongly prefer Wicket and/or Lift, especially the latter. The problem with Prado seems to be that the controller is tied to the page, rather than the logical controls on the

Better alternative to Apache Tiles

梦想的初衷 提交于 2019-11-29 09:13:34
I'm looking for a framework that is better and easier to use than Apache Tiles (which so far, I have used a couple of times). With Tiles, it seems that when I have 100 actions I need to creates 100 jsp files and create 100 definitions in tiles.xml . Is there a better framework to manage my templates? I want to create, for example, 2 templates: a) menu and column for content b) menu, column for content, right column with banner In both templates the menu is constant. In template b , the right column is constant, so only the content column is different. For this simple example I don't want to

What's the most minimal Java web MVC framework? [closed]

与世无争的帅哥 提交于 2019-11-29 09:05:06
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I'm looking for a Java web framework that requires the most minimal amount of configuration for a very small app. Spring & Struts are definitely overkill here. This is an app that could be written without any framework at all but I would prefer to use a minimal MVC framework if I can find one. 回答1: Stripes and