`
xplq
  • 浏览: 89858 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

gxt prc

阅读更多

gxt即Ext GWT: Rich Internet Application Framework for GWT,因此,gxt rpc 的核心是gwt rpc,故此,参阅一些网络资料,支持作者,尊重版权,列出如下:

1、http://www.thescreencast.com/2007/08/gwt-rpc-in-eclipse.html

2、http://blog.sina.com.cn/s/blog_416cf77c0100082o.html

3、http://courses.coreservlets.com/Course-Materials/ajax.html

现在开始。

需要说明的是,此篇是在tomcate6上运行,而非应用GWT自带的环境,所以,请先阅读本人之前的文章:《gxt在tomcate6上运行配置》。

一、准备

1、建立工程

利用建立eclipse建立工程GxtRPC,添加GWT Module ,包名:org.gxtrpc,类名 Test。

2、添加gxt支持

在WEB-INF/lib下加入gxt1.2.jar,在pulib/Test.html中加入<link rel="stylesheet" type="text/css" href="css/ext-all.css" />,在Test.gwt.xml中加入<inherits name='com.extjs.gxt.ui.GXT'/>, 继承gxt默认的module。 

如有问题,请参阅《gxt在tomcate6上运行配置》

二、构建rpc环境

1、client包下创建两个远程接口

GetServerTime.java:

 

package org.gxtrpc.client;

import com.google.gwt.user.client.rpc.RemoteService;

public interface GetServerTime extends RemoteService {
	public String getTime();
}

 

 功能为:获取服务器的当前时间

 

GWT插件自动创建:GetServerTimeAsync.java,不需要自己创建,代码:

package org.gxtrpc.client;

import com.google.gwt.user.client.rpc.AsyncCallback;

public interface GetServerTimeAsync {
	public void getTime(AsyncCallback<String> callback);
}

 

2、在sever包下创建具体实现类GetServerTimeImpl.java,该类需继承com.google.gwt.user.server.rpc.RemoteServiceServlet类,及实现GetServerTime接口,代码:

package org.gxtrpc.server;

import org.gxtrpc.client.GetServerTime;

import com.google.gwt.user.server.rpc.RemoteServiceServlet;
import java.text.SimpleDateFormat;
import java.util.Date;
public class GetServerTimeImpl extends RemoteServiceServlet implements
		GetServerTime {
	private static final long serialVersionUID = 8431268948021482724L;

	public String getTime() {
		SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		return format.format(new Date());
	}

}

 

实现类很简单,获取服务器的当前时间。

3、在web.xml下配置servlet,即配置上面的实现类:

	<servlet>
		<servlet-name>servertime</servlet-name>
		<servlet-class>org.gxtrpc.server.GetServerTimeImpl</servlet-class>
	</servlet>
	<servlet-mapping>
		<servlet-name>servertime</servlet-name>
		<url-pattern>/servertime</url-pattern>
	</servlet-mapping>

 如果不用tomcate运行,而是运用GWT自带的环境,具体参阅《gxt:ext-gwt入门》,则该servlet 应该配置在Test.gwt.xml中,加上<servlet path="/servertime" class="org.gxtrpc.server.GetServerTimeImpl"/>即可。

但是,利用tomcate运行的话,一定要在web.xml下配置,否则请求资源报错。

三、测试

新建org.gxtrpc.client.window,在该包下建立WindowTest.java,该类需继承com.extjs.gxt.ui.client.widget.LayoutContainer;如下

package org.gxtrpc.client.window;

import org.gxtrpc.client.GetServerTimeAsync;

import com.extjs.gxt.ui.client.event.ComponentEvent;
import com.extjs.gxt.ui.client.event.SelectionListener;
import com.extjs.gxt.ui.client.widget.LayoutContainer;
import com.extjs.gxt.ui.client.widget.button.Button;
import com.extjs.gxt.ui.client.widget.form.FormPanel;
import com.extjs.gxt.ui.client.widget.form.TextField;
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
import com.extjs.gxt.ui.client.widget.layout.FlowLayout;
import com.extjs.gxt.ui.client.widget.Window;

import com.google.gwt.user.client.Element;
import com.google.gwt.user.client.rpc.AsyncCallback;

public class WindowTest extends LayoutContainer {
	private GetServerTimeAsync serverTime;

	public WindowTest() {

	}

	public WindowTest(GetServerTimeAsync serverTime) {
		this.serverTime = serverTime;
	}

	@Override
	protected void onRender(Element parent, int index) {
		super.onRender(parent, index);
		setLayout(new FlowLayout(10));
		Window window = new Window();
		window.setHeading("hello rpc");
		window.setSize(500, 300);
		window.setPlain(true);
		window.setLayout(new FitLayout());
		FormPanel panel = new FormPanel();
		panel.setHeading("获取服务器时间");
		panel.setHeaderVisible(false);
		final TextField<String> txtTime = new TextField<String>();
		txtTime.setName("txtTime");
		txtTime.setFieldLabel("服务器时间");
		panel.add(txtTime);
		Button b = new Button("获取");
		b.addSelectionListener(new SelectionListener<ComponentEvent>(){
			public void componentSelected(ComponentEvent ce) {
				if(serverTime==null){
					return ;
				}else{
					serverTime.getTime(new AsyncCallback<String>(){
						public void onFailure(Throwable caught) {
							// TODO handle errors
							
						}

						public void onSuccess(String result) {
							if(result!=null)
							txtTime.setValue(result);
						}
						
					});
				}
			}
			
		});
		b.setId("btntime");
		panel.add(b);
		window.add(panel);
		window.show();
	}

}

 

从上可以看出把GetServerTimeAsync 接口注册到该类中,就可以在button的事件中访问了。同时以后也方便与spring整合。这个以后研究。

 

在Test.java类中编写:

package org.gxtrpc.client;

import org.gxtrpc.client.window.WindowTest;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.rpc.ServiceDefTarget;
import com.google.gwt.user.client.ui.RootPanel;
public class Test implements EntryPoint {

	public void onModuleLoad() {		
		RootPanel.get().add(new WindowTest(initServiceEntryPoint()));		
	}
	private GetServerTimeAsync initServiceEntryPoint(){
		GetServerTimeAsync time=(GetServerTimeAsync)GWT.create(GetServerTime.class);
		ServiceDefTarget endpoint=(ServiceDefTarget)time;
		String moduleRelativeURL = GWT.getModuleBaseURL() + "servertime";
		endpoint.setServiceEntryPoint(moduleRelativeURL);
		return time;
	}

}

 运行build下的Test.html,可以看到预想的结果:



 完整的工程如下图:



 

源代码在附件中。

  • 大小: 18.4 KB
  • 大小: 25.5 KB
分享到:
评论
7 楼 wangying95599 2009-09-25  
xwhoyeah 写道
请教楼主:
    GetServerTime.java 我是用 【GWT Remote Service】创建的。
自动生成 GetServerTimeAsync.java 接口。但是是个空接口,我手工添加
public void getTime(AsyncCallback<String> callback)   方法。
但编译后getTime方法就被自动删除了。 
    请教楼主是什么原因,谢谢了!

自动生成不会是空接口阿
6 楼 xwhoyeah 2008-12-24  
请教楼主:
    GetServerTime.java 我是用 【GWT Remote Service】创建的。
自动生成 GetServerTimeAsync.java 接口。但是是个空接口,我手工添加
public void getTime(AsyncCallback<String> callback)   方法。
但编译后getTime方法就被自动删除了。 
    请教楼主是什么原因,谢谢了!
5 楼 xplq 2008-12-17  
czx566 写道

一直没明白 ext js 和 ext gwt什么关系?

ext gwt 前身是mygwt,也就是说mygwt加入extjs阵营中,至于更详细的内幕就不得而知了,呵呵
4 楼 czx566 2008-12-16  
一直没明白
ext js 和 ext gwt什么关系?
3 楼 xplq 2008-12-16  
项目编码是在ec中配置的,Window-->Preferences-->General-->WorkSpace中Text File Encoding 配置成 UTF-8就可以了。
2 楼 jvincent 2008-12-15  
把项目的编码更称UTF-8应该就好了...
1 楼 sivii 2008-12-15  
中文是乱码,编码格式在哪里配?

相关推荐

    Gxt_BLOG(GXt项目)

    **GXT项目详解** GXT,全称是GWT eXtensions,是Sencha公司为Google Web Toolkit(GWT)开发的一套丰富的用户界面组件库。GXT项目旨在为Web应用程序提供桌面级别的用户体验,利用JavaScript和HTML5技术,使得在...

    GXT 学习的好书

    ### GXT学习的好书知识点详解 #### 一、GXT简介 GXT(GXT是Ext GWT的简称)是一款基于Google Web Toolkit (GWT) 的开源Java库,用于构建高性能的企业级富客户端应用程序。GXT 提供了丰富的UI组件集合、数据网格以及...

    gxt初学进阶教程

    从给定的内容来看,这篇“gxt初学进阶教程”主要介绍了一个基于GWT(Google Web Toolkit)的扩展工具库ExtGWT,也被称作GXT,用于帮助Java程序员在Web开发中创建富客户端应用程序。以下是根据提供的文件内容总结出的...

    GXT 软件包和API

    **GXT软件包和API详解** GXT,全称为GWT Ext,是基于Google Web Toolkit (GWT) 的一个强大的Java UI库。它为开发者提供了丰富的用户界面组件和功能,使得构建复杂的、企业级的Web应用程序变得更加便捷。GXT不仅在...

    Gxt,包含resource

    标题中的"Gxt"指的是Sencha GXT,这是一个基于Google Web Toolkit (GWT) 的Java库,专门用于构建富互联网应用程序(Rich Internet Applications, RIA)。GXT提供了丰富的组件、数据绑定、布局管理以及主题定制等功能...

    GXT组件使用教程

    **标题:“GXT组件使用教程”** GXT(Ext GWT)是Sencha公司开发的一个强大的JavaScript库,用于构建富互联网应用程序(Rich Internet Applications,RIAs)。它基于Google的GWT(Google Web Toolkit),提供了丰富...

    GXT v2.2.1 API doc

    **GXT v2.2.1 API 文档详解** GXT (Ext GWT) 是一个基于Google Web Toolkit (GWT) 的用户界面库,它提供了一系列丰富的组件和样式,用于构建复杂的、高性能的Web应用程序。GXT v2.2.1 API文档是官方提供的详细参考...

    GXT Cascade ComboBox Samples

    在IT行业中,GXT(Ext GWT)是一种用于构建富客户端Web应用的JavaScript库,它基于Google的GWT(Google Web Toolkit)。GXT提供了一系列组件,使得开发者可以创建功能丰富的用户界面,类似于桌面应用程序的体验。...

    gxt-1.2.3.jar.zip

    标题 "gxt-1.2.3.jar.zip" 指的是一个包含GXT库的压缩文件,版本为1.2.3。GXT,全称为Google Web Toolkit EXT,是Google Web Toolkit(GWT)的一个扩展,它提供了一系列丰富的用户界面组件,用于构建功能强大的Web...

    一步一步教你新建GXT项目

    在`Libraries`选项卡中,点击`Add External JARs`,导航到你的GXT SDK安装目录,选择`gxt-x.x.x-client.jar`(x.x.x代表你的GXT版本号)添加进来。 4. **创建GXT模块**:打开`src/main/java`目录下的`...

    浪曦原创]GXT系列+第1讲+GXT_GWT的安装.

    浪曦原创]GXT系列+第1讲+GXT_GWT的安装.

    gwt + gxt jar包

    GWT(Google Web Toolkit)和GXT(EXT GWT)是两个重要的Java开发框架,用于构建富互联网应用程序(RIA)。GWT是由Google开发的一个开源工具,它允许开发者使用Java语言来编写前端用户界面,然后自动将Java代码编译...

    gxt-2.2.5.zip

    《GXT 2.2.5:Ext-GWT的增强工具包详解》 GXT,全称为GWT eXtension,是由EXTJS团队开发的一个用于Google Web Toolkit(GWT)的扩展库,旨在为GWT开发者提供更丰富、更强大的用户界面组件和功能。GXT 2.2.5是该系列...

    GXT的JAR包

    GXT(Ext GWT)是Sencha公司推出的一个强大的JavaScript库,专为构建富互联网应用程序(RIA)设计,尤其在企业级应用中广泛使用。它基于Google的GWT(Google Web Toolkit),允许开发者使用Java语言编写客户端代码,...

    american.gxt

    这是GTA4里的源文件american.gxt

    gxt-api-2.2.5 doc

    《GXT API 2.2.5:深入理解与应用》 GXT,全称GWT Extensions,是一款基于Google Web Toolkit (GWT) 的开源UI组件库,它为Web应用程序提供了丰富的用户界面组件和功能。GXT API 2.2.5是这个库的一个版本,包含了...

    gwt gxt demo

    标题 "gwt gxt demo" 暗示我们正在探讨一个基于 Google Web Toolkit (GWT) 和 Sencha GXT 的演示项目。GWT 是一个由Google开发的开源框架,允许开发者使用Java语言来编写Web应用,然后编译成优化过的JavaScript代码...

    gwt , gxt文件上传

    GWT(Google Web Toolkit)和GXT(Sencha GXT)是两个在Web开发中用于构建富互联网应用程序(RIA)的框架。GWT是Google推出的一款开源工具,它允许开发者使用Java语言编写客户端代码,然后编译成优化的JavaScript,...

    gxt、gwt与spring结合使用

    在IT行业中,GXT(Ext GWT)和GWT(Google Web Toolkit)是两种流行的JavaScript库,用于构建富互联网应用程序(Rich Internet Applications, RIA)。它们都是基于Java语言的,可以提供丰富的用户界面组件和高效的...

Global site tag (gtag.js) - Google Analytics