我想出了一個快速入侵方法來綁定屬性,如下所示。
注意:它沒有優化,沒有錯誤處理。只是展示一種可能性。
@Retention(RetentionPolicy.RUNTIME)
@interface Bind
{
String value();
}
我測試了一些基本參數並且正在工作。
class App
{
@Bind("msg10")
private String msg1;
@Bind("msg11")
private String msg2;
//setters & getters
}
public class PropertyBinder
{
public static void main(String[] args) throws IOException, IllegalAccessException
{
Properties props = new Properties();
InputStream stream = PropertyBinder.class.getResourceAsStream("/app.properties");
props.load(stream);
System.out.println(props);
App app = new App();
bindProperties(props, app);
System.out.println("Msg1="+app.getMsg1());
System.out.println("Msg2="+app.getMsg2());
}
static void bindProperties(Properties props, Object object) throws IllegalAccessException
{
for(Field field : object.getClass().getDeclaredFields())
{
if (field.isAnnotationPresent(Bind.class))
{
Bind bind = field.getAnnotation(Bind.class);
String value = bind.value();
String propValue = props.getProperty(value);
System.out.println(field.getName()+":"+value+":"+propValue);
field.setAccessible(true);
field.set(object, propValue);
}
}
}
}
在根類路徑中創建app.properties
。
msg10=message1
msg11=message2
'.properties'文件?你嘗試過'ResourceBundle'嗎?儘管如此,它不會像你所嘗試的那樣工作。 – GustavoCinque
你可以自己寫。使用反射API。 –
@MdFaraz是的,這就是我現在正在做的事情,但是如果有一個API得到了充分證明,那麼它的價值使用將會更好地通過功能進行測試。 – Sankalp