类 ResourceArrayPropertyEditor

java.lang.Object
java.beans.PropertyEditorSupport
cn.taketoday.core.io.ResourceArrayPropertyEditor
所有已实现的接口:
PropertyEditor

public class ResourceArrayPropertyEditor extends PropertyEditorSupport
Editor for Resource arrays, to automatically convert String location patterns (e.g. "file:C:/my*.txt" or "classpath*:myfile.txt") to Resource array properties. Can also translate a collection or array of location patterns into a merged Resource array.

A path may contain ${...} placeholders, to be resolved as Environment properties: e.g. ${user.dir}. Unresolvable placeholders are ignored by default.

Delegates to a PatternResourceLoader, by default using a PathMatchingPatternResourceLoader.

从以下版本开始:
4.0 2022/2/17 17:50
作者:
Juergen Hoeller, Chris Beams, Harry Yang
另请参阅: