spring复习:(27)BeanMetadataElement接口

public interface BeanMetadataElement {

	/**
	 * Return the configuration source {@code Object} for this metadata element
	 * (may be {@code null}).
	 */
	@Nullable
	default Object getSource() {
		return null;
	}

}

该接口只有一个默认方法: getSource

你可能感兴趣的:(Spring,spring,java,后端)