随笔分类 -  Vaadin

web前台框架(no javascript)
摘要:Vaadin Plugin for Spring RooSpring Roo is a lightweight developer tool that makes it fast and easy to deliver instant results. Best of all, you code 100% in Java and get to reuse all your existing Java knowledge, skills and experience.注意:vaadin目前只支持SpringRoo1.1.5,Install SpringSource Tool Suite (STS 阅读全文
posted @ 2012-01-19 16:38 HelloCoding 阅读(1110) 评论(0) 推荐(0)
摘要:vaadin应用程序的开发类似于桌面应用的开发。5分钟教程:首先要有一个主程序入口(继承com.Vaadin.Application),实现init方法(类似main方法)代码示例: import com.Vaadin.Application; import com.Vaadin.ui.*; public class Dw_Vaadin_projectApplication extends com.Vaadin.Application { public void init() { /*... 创建主窗口 ...*/ Window main = new Window(... 阅读全文
posted @ 2012-01-19 16:36 HelloCoding 阅读(1905) 评论(0) 推荐(0)