Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 563 Bytes

Spring-StubPropertySource.md

File metadata and controls

26 lines (20 loc) · 563 Bytes

Spring StubPropertySource

  • Author: HuiFer

  • 源码阅读仓库: SourceHot-spring

  • 整体代码如下.

    • 通过 StubPropertySource 的 getProperty 方法永远返回 null
	public static class StubPropertySource extends PropertySource<Object> {

		public StubPropertySource(String name) {
			super(name, new Object());
		}

		/**
		 * Always returns {@code null}.
		 */
		@Override
		@Nullable
		public String getProperty(String name) {
			return null;
		}
	}