- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
有了 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=100To 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/
你能比较一下属性吗 我想禁用文本框“txtName”。有两种方式 使用javascript,txtName.disabled = true 使用 ASP.NET, 哪种方法更好,为什么? 最佳答案 我
Count 属性 返回一个集合或 Dictionary 对象包含的项目数。只读。 object.Count object 可以是“应用于”列表中列出的任何集合或对
CompareMode 属性 设置并返回在 Dictionary 对象中比较字符串关键字的比较模式。 object.CompareMode[ = compare] 参数
Column 属性 只读属性,返回 TextStream 文件中当前字符位置的列号。 object.Column object 通常是 TextStream 对象的名称。
AvailableSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。 object.AvailableSpace object 应为 Drive 
Attributes 属性 设置或返回文件或文件夹的属性。可读写或只读(与属性有关)。 object.Attributes [= newattributes] 参数 object
AtEndOfStream 属性 如果文件指针位于 TextStream 文件末,则返回 True;否则如果不为只读则返回 False。 object.A
AtEndOfLine 属性 TextStream 文件中,如果文件指针指向行末标记,就返回 True;否则如果不是只读则返回 False。 object.AtEn
RootFolder 属性 返回一个 Folder 对象,表示指定驱动器的根文件夹。只读。 object.RootFolder object 应为 Dr
Path 属性 返回指定文件、文件夹或驱动器的路径。 object.Path object 应为 File、Folder 或 Drive 对象的名称。 说明 对于驱动器,路径不包含根目录。
ParentFolder 属性 返回指定文件或文件夹的父文件夹。只读。 object.ParentFolder object 应为 File 或 Folder 对象的名称。 说明 以下代码
Name 属性 设置或返回指定的文件或文件夹的名称。可读写。 object.Name [= newname] 参数 object 必选项。应为 File 或&
Line 属性 只读属性,返回 TextStream 文件中的当前行号。 object.Line object 通常是 TextStream 对象的名称。 说明 文件刚
Key 属性 在 Dictionary 对象中设置 key。 object.Key(key) = newkey 参数 object 必选项。通常是 Dictionary 
Item 属性 设置或返回 Dictionary 对象中指定的 key 对应的 item,或返回集合中基于指定的 key 的&
IsRootFolder 属性 如果指定的文件夹是根文件夹,返回 True;否则返回 False。 object.IsRootFolder object 应为&n
IsReady 属性 如果指定的驱动器就绪,返回 True;否则返回 False。 object.IsReady object 应为 Drive&nbs
FreeSpace 属性 返回指定的驱动器或网络共享对于用户的可用空间大小。只读。 object.FreeSpace object 应为 Drive 对象的名称。
FileSystem 属性 返回指定的驱动器使用的文件系统的类型。 object.FileSystem object 应为 Drive 对象的名称。 说明 可
Files 属性 返回由指定文件夹中所有 File 对象(包括隐藏文件和系统文件)组成的 Files 集合。 object.Files object&n
我是一名优秀的程序员,十分优秀!