PropertyBinder是一个Java类库,用来处理properties文件的,支持多值的key。可通过Annotation对Properties文件进行解析处理,例如下面代码:
publicinterfaceExamplePICA{Stringunadorned();@BoundProperty("unconverted.property")Stringannotated();intintProperty();LongwrappedLongProperty();char[]charArrayProperty();List<Character>charListProperty();@ValuesSeparatedBy(pattern="\\s*,\\s*")List<Ternary>listOfEnumsWithSeparator();@DefaultsTo(value="10")BigDecimalbigDecimalPropertyWithDefault();}点击空白处退出提示
评论