接口 PropertySourceFactory

所有已知实现类:
DefaultPropertySourceFactory

public interface PropertySourceFactory
Strategy interface for creating resource-based PropertySource wrappers.
从以下版本开始:
4.0
作者:
Juergen Hoeller, TODAY 2021/10/28 17:34
另请参阅:
  • 方法详细资料

    • createPropertySource

      PropertySource<?> createPropertySource(@Nullable String name, EncodedResource resource) throws IOException
      Create a PropertySource that wraps the given resource.
      参数:
      name - the name of the property source (can be null in which case the factory implementation will have to generate a name based on the given resource)
      resource - the resource (potentially encoded) to wrap
      返回:
      the new PropertySource (never null)
      抛出:
      IOException - if resource resolution failed