gpt4 book ai didi

Java 属性文件绑定(bind)到 Java 接口(interface)

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:48:41 25 4
gpt4 key购买 nike

有了 GWT,你就有了这样的东西:

public interface LoginConstants extends Constants {
@DefaultStringValue("Wellcome to my super app")
@Key("appDescription")
String appDescription();

@DefaultStringValue("Ok")
@Key("okButtonLabel")
String okButtonLabel();
}

然后你可以从你的类中使用 GWT.create(LoginConstant.class),这样接口(interface)就得到了动态实现的支持,当我调用 loginConstants.appDescription() 返回属性文件中包含的值时,使用@Key 注释以引用属性文件中的键。如果属性文件缺少该属性,则返回 de @DefaultStringValue。这用于国际化,但也可能用于配置。但是对于 GWT,这意味着在客户端使用(即翻译成 JavaScript),并且用于 i18n,而不是用于配置。

但是,我发现这个想法对于配置处理也非常方便。

我想知道是否有人知道一个框架可以在服务器端做类似的事情,而不必将您的代码绑定(bind)到 GWT。 IE。是否有任何库实现了专门为配置处理而设计的这种逻辑。我不知道有这样的事情。

引用 GWT 中的功能:https://developers.google.com/web-toolkit/doc/latest/DevGuideI18nConstants

最佳答案

我对这个问题实现了自己的解决方案:

BASIC USAGE

The approach used by OWNER APIs, is to define a Java interface associated to a properties file.

Suppose your properties file is defined as ServerConfig.properties:

port=80
hostname=foobar.com
maxThreads=100

To access this property you need to define a convenient Java interface in ServerConfig.java:

public interface ServerConfig extends Config {
int port();
String hostname();
int maxThreads();
}

We'll call this interface the Properties Mapping Interface or just Mapping Interface since its goal is to map Properties into an easy to use a piece of code.

Then, you can use it from inside your code:

public class MyApp {
public static void main(String[] args) {
ServerConfig cfg = ConfigFactory.create(ServerConfig.class);
System.out.println("Server " + cfg.hostname() + ":" + cfg.port() +
" will run " + cfg.maxThreads());
}
}

But this is just the tip of the iceberg.

继续阅读此处:Basic usage || Website || Github

我仍然有一些功能在脑海中,但当前的实现比问题中描述的基本功能要先进一些。

我需要添加示例和文档。

关于Java 属性文件绑定(bind)到 Java 接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13861005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com