我有一个LinkedList为
/**
* The list of data to display.
*/
private static final List<Contact> CONTACTS = new LinkedList<Contact>(Arrays.asList(
new Contact("Some string", "1234", "5678")));
现在而不是这个List我想从Postgres中检索这些数据。我不知道该怎么做。一个例子会很棒!谢谢。
答案 0 :(得分:1)
查看Google Developers上的RPC tutorial。它建立在他们的stockwatcher项目之上,并解释了使用gwt的客户端 - 服务器解决方案的基础知识。
对于您的项目,您需要一种能够响应数据库数据的服务。