在GWT中哪里存储配置参数? [英] Where to store config parameters in GWT?

查看:70
本文介绍了在GWT中哪里存储配置参数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以在哪里在客户端存储配置参数?我无法将参数存储在Servlet初始化参数(web.xml)中(因为我必须使用PHP)。那么如何在客户端上存储初始化应用程序参数(例如PHP脚本位置,一些密码等)?

Where I can store configuration parameters in client side? I haven't possibility to store parameters in Servlet init parameters(web.xml) (because I must use PHP). So how I can store init application parameters (for example PHP script location, some passwords etc.) on client side?

推荐答案

到为此,您有以下选择:

To do this you have a following options:


  1. 将数据存储在客户端代码中。 GWT会编译为javascript,最简单的方法是使用硬编码值创建 Configuration 类。

  2. 将数据存储在浏览器。您可以使用Cookie或HTML5 本地存储

  3. 存储

  1. Store data in client side code. GWT compiles down to the javascript and the simplest way to do this is to create a Configuration class with hardcoded values.
  2. Store data in a browser. You can use cookies or HTML5 local storage
  3. Store data on a server side and retrieve them using remote RPC.

我建议您选择第三个选项。

I would recommend you go with third option.

这篇关于在GWT中哪里存储配置参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆