Where to store config parameters in GWT?

前端 未结 5 1123
伪装坚强ぢ
伪装坚强ぢ 2021-01-12 09:30

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

5条回答
  •  青春惊慌失措
    2021-01-12 10:06

    Storing passwords on client side? OK, if you want to. Just create a class that will hold them, could be a static field, or a singleton object with all the parameters. Could even be the one with entryPoint().

提交回复
热议问题