从代码中更改应用程序上下文

发布于 2024-11-06 12:50:45 字数 317 浏览 2 评论 0原文

我有一个小问题。我希望有人能帮助我。

我正在为我的论文开发一个应用程序。 现在我有一个 application-context.properties.txt,我在其中定义:

host= (ip address)
port=8080

现在这是静态的,我将 IP 地址更改为我想要连接的服务器。 但这对于用户来说并不是很有用,因为他无法访问该文件。

现在我的问题是我可以在 Flex 代码中更改此主机 IP 地址吗?我该怎么做呢?

希望有人能帮助我。

亲切的问候,

蒂博·海伦

I have a little problem. I hope someone can help me.

I'm developping an application for my thesis.
Now I have an application-context.properties.txt where I define:

host= (ip address)
port=8080

Now this is static and I change the ip address to the server I want to connect to.
But this isn't verry usefull for the user because he can't access that file.

Now is my question can I change this host ip address from in my flex code? And how do I do that.

Hope someone can help me.

Kind regards,

Thibault Heylen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〃安静 2024-11-13 12:50:45

通常配置即 services.xml 在编译时嵌入,此博客

使用 BlazeDS 和 LCDS 外部化服务配置

指出了外部化服务配置的方法,

希望可行,

Usually Configurations i.e services.xml embeds at compile time, this blog

Externalizing Service Configuration using BlazeDS and LCDS

pointed towards way to Externalizing Service Configuration,

hopes that works,

清风夜微凉 2024-11-13 12:50:45

查看文档,FlexXMLApplicationContext 只是应用程序上下文的一个示例。如果上下文类尚不支持,您可能可以从它或 XMLApplicationContext 派生以允许运行时更改配置变量?

您将无法更改 XML 文件本身中的值,因为它是已编译的资源,但您应该能够扩展 SpringAS 以在运行时执行您想要的操作。

Looking at the documentation, the FlexXMLApplicationContext is just one example of an application context. Possibly, you can derive from it or the XMLApplicationContext to allow for runtime changes to configuration variables, if the context class doesn't support it already?

You won't be able to change the value in the XML file itself, since it is a compiled resource, but you should be able to extend SpringAS to do what you want at runtime.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文