
gwt
iteye_10104
这个作者很懒,什么都没留下…
展开
-
小试GWT
当gwt发布的时候我就初略的看了gwt的文档。当时没有在注意这个东西。当自己经过ajax, javascript洗礼后,蓦然想试试gwt这个东西。原卷了javascript的开发效率(虽然FF 有firebug, IE下面有VS)。我也不确定gwt是否会提高开发效率(我也没有用gwt做过项目),但是就评google的技术,而且可以用java去写页面代码。 我觉得有必要试试。发了些时间看了gwt...2006-10-24 16:00:00 · 142 阅读 · 0 评论 -
避免调试大型gwt项目中容易出现的out of memory error。
我们在调试稍大些的gwt项目(用run方式也一样)非常容易出现out of memory错误。 设置vm 参数为-Xms512m -Xmx1024m后也是一样。 这样效率实在太低。 其实我们可以再加上-XX:MaxPermSize=256m 这个vm option就能解决这个问题。 通常来说如果你设置的heap size越大, 你也需要把-XX:MaxPermSize设置越大。 ...原创 2010-11-02 17:30:31 · 376 阅读 · 0 评论 -
使用maven来创建和管理你的gwt1.6项目
下面这段代码就是创建gwt1.6项目的maven命令。[quote]mvn archetype:generate -DarchetypeGroupId=org.codehaus.mojo -DarchetypeArtifactId=gwt-maven-plugin -DarchetypeVersion=1.1 -DarchetypeRepository=http://repository....2009-07-03 10:52:08 · 137 阅读 · 0 评论 -
The MyGWT Library--Extjs looking widgets, no external JS
MyGWT is an open source Java library for the Google Web Toolkit. The library helps developers easily create compelling desktop like AJAX web applications. No messing around with HTML, CSS, or ...2007-10-17 15:46:33 · 101 阅读 · 0 评论 -
Maven 2 Plugin for the Google Web Toolkit
http://code.google.com/p/gwt-maven/看了一下。 现在gwt的maven整合确实不错了。 document:http://gwt-maven.googlecode.com/svn/docs/maven-googlewebtoolkit2-plugin/index.html原创 2008-09-21 22:12:06 · 227 阅读 · 0 评论 -
READING GWT IN ACTION
公司即将用gwt重写一个项目。 把GWT IN ACTION从emule download下来。 阅读中。。。。2007-09-17 10:56:25 · 84 阅读 · 0 评论 -
GWT中有没有Model的概念呀(就是可以绑定textField的值到某个对象)
如果我有个domain 对象有许多的property,如果每个property都需要去手工设值的话, 就太多代码了。有没有form validator 这些东西? 在网上找了很久 没有找到相关的东西。 看了这个组件FormPanel 但是好像也是完成一般的传Name Value Pair到servlet而已。...2007-09-13 17:37:17 · 126 阅读 · 0 评论 -
让gwt在linux 64位机上跑起来
gwt本身只提供32位的lib。所以你用64位的jdk去跑的话就会抛错。[code="java"]Exception in thread "main" java.lang.UnsatisfiedLinkError: /home/denny/Working/gwt-linux-1.5.0/libswt-pi-gtk-3235.so: /home/denny/Working/gwt-linux...2008-07-22 11:22:47 · 173 阅读 · 0 评论 -
GWT的loading indicator(装载指示器)
本文参考:http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/7ed0d179b89fa062/aaeb5391a760adef?lnk=gst&q=indicator+AsyncCallback&rnum=1#aaeb5391a760adef大部分代码也是参考文中的。[code]packag...2007-03-21 23:32:36 · 217 阅读 · 0 评论 -
GWT整合SPRING
1. 我们这里整合spring主要是用到了一个组件gwt-widgets-server 可以在http://jaist.dl.sourceforge.net/sourceforge/gwt-widget/gwt-widgets-server-0.1.2-bin.zip下载。2. 我们使用gwt的命令(projectCreator applicationCreator )生成gwt的eclips...2007-03-08 00:32:00 · 298 阅读 · 0 评论 -
让GWT的FlexTable支持双击(double click)
Each event has a set of browser events that fires it. For example take a look at the source of the HTMLTable Class in the gwt-user jar. It has the following constructor: public HTMLTable() { ...2006-11-23 16:00:00 · 110 阅读 · 0 评论 -
Echo2。 Echo2 is the next-generation of the Echo Web Framewor
主页:http://www.nextapp.com/platform/echo2/echo/在线演示:http://demo.nextapp.com/Demo/appecho2 VS gwthttp://www.theserverside.com/news/thread.tss?thread_id=40804http://www.javalobby.org/java/forum...2006-11-10 13:14:09 · 146 阅读 · 0 评论 -
关于gwt的帖子很少呀。
javaeye关于gwt的帖子很少呀。 搜索整个论坛才发现两篇文章。不知道这里有没有用gwt作开发的, 能不能说说使用的感受。最近又看了下gwt,感觉最好的地方是调式方面, 用java写界面, 这样的话对于传统的写javascript效率会不会有很大的提高呢? 还有debug, 虽然FF下面有firebug venkmen, IE下面有VS MSE, 但是感觉都不是特别好, 而且你还需要分别在IE...2006-10-25 09:45:35 · 87 阅读 · 0 评论 -
Integrate gwt + mvp4g + gwt-incubator-lib + Spring 3.0.2 + Spring Security 2
Work successfully on integrating following stuffs. GWT 2.0.3 mvp4g 1.1.0 gwt-incubator-lib 1.0.1 GWT-SL 1.1 Spring 3.0.2 Spring Security 2.0.4 as gwt-incubator-lib is compatible with...原创 2010-05-08 17:13:13 · 119 阅读 · 0 评论