类org.springframework.beans.factory.parsing.ReaderContext源码实例Demo

下面列出了怎么用org.springframework.beans.factory.parsing.ReaderContext的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: spring-analysis-note   文件: CacheAdviceParser.java
<T extends CacheOperation.Builder> T merge(Element element, ReaderContext readerCtx, T builder) {
	String cache = element.getAttribute("cache");

	// sanity check
	String[] localCaches = this.caches;
	if (StringUtils.hasText(cache)) {
		localCaches = StringUtils.commaDelimitedListToStringArray(cache.trim());
	}
	if (localCaches != null) {
		builder.setCacheNames(localCaches);
	}
	else {
		readerCtx.error("No cache specified for " + element.getNodeName(), element);
	}

	builder.setKey(getAttributeValue(element, "key", this.key));
	builder.setKeyGenerator(getAttributeValue(element, "key-generator", this.keyGenerator));
	builder.setCacheManager(getAttributeValue(element, "cache-manager", this.cacheManager));
	builder.setCondition(getAttributeValue(element, "condition", this.condition));

	if (StringUtils.hasText(builder.getKey()) && StringUtils.hasText(builder.getKeyGenerator())) {
		throw new IllegalStateException("Invalid cache advice configuration on '" +
				element.toString() + "'. Both 'key' and 'keyGenerator' attributes have been set. " +
				"These attributes are mutually exclusive: either set the SpEL expression used to" +
				"compute the key at runtime or set the name of the KeyGenerator bean to use.");
	}

	return builder;
}
 
源代码2 项目: spring-analysis-note   文件: CacheAdviceParser.java
@Nullable
String merge(Element element, ReaderContext readerCtx) {
	String method = element.getAttribute(METHOD_ATTRIBUTE);
	if (StringUtils.hasText(method)) {
		return method.trim();
	}
	if (StringUtils.hasText(this.method)) {
		return this.method;
	}
	readerCtx.error("No method specified for " + element.getNodeName(), element);
	return null;
}
 
源代码3 项目: java-technology-stack   文件: CacheAdviceParser.java
<T extends CacheOperation.Builder> T merge(Element element, ReaderContext readerCtx, T builder) {
	String cache = element.getAttribute("cache");

	// sanity check
	String[] localCaches = this.caches;
	if (StringUtils.hasText(cache)) {
		localCaches = StringUtils.commaDelimitedListToStringArray(cache.trim());
	}
	if (localCaches != null) {
		builder.setCacheNames(localCaches);
	}
	else {
		readerCtx.error("No cache specified for " + element.getNodeName(), element);
	}

	builder.setKey(getAttributeValue(element, "key", this.key));
	builder.setKeyGenerator(getAttributeValue(element, "key-generator", this.keyGenerator));
	builder.setCacheManager(getAttributeValue(element, "cache-manager", this.cacheManager));
	builder.setCondition(getAttributeValue(element, "condition", this.condition));

	if (StringUtils.hasText(builder.getKey()) && StringUtils.hasText(builder.getKeyGenerator())) {
		throw new IllegalStateException("Invalid cache advice configuration on '" +
				element.toString() + "'. Both 'key' and 'keyGenerator' attributes have been set. " +
				"These attributes are mutually exclusive: either set the SpEL expression used to" +
				"compute the key at runtime or set the name of the KeyGenerator bean to use.");
	}

	return builder;
}
 
源代码4 项目: java-technology-stack   文件: CacheAdviceParser.java
@Nullable
String merge(Element element, ReaderContext readerCtx) {
	String method = element.getAttribute(METHOD_ATTRIBUTE);
	if (StringUtils.hasText(method)) {
		return method.trim();
	}
	if (StringUtils.hasText(this.method)) {
		return this.method;
	}
	readerCtx.error("No method specified for " + element.getNodeName(), element);
	return null;
}
 
源代码5 项目: lams   文件: CacheAdviceParser.java
<T extends CacheOperation.Builder> T merge(Element element, ReaderContext readerCtx, T builder) {
	String cache = element.getAttribute("cache");

	// sanity check
	String[] localCaches = this.caches;
	if (StringUtils.hasText(cache)) {
		localCaches = StringUtils.commaDelimitedListToStringArray(cache.trim());
	}
	else {
		if (this.caches == null) {
			readerCtx.error("No cache specified for " + element.getNodeName(), element);
		}
	}
	builder.setCacheNames(localCaches);

	builder.setKey(getAttributeValue(element, "key", this.key));
	builder.setKeyGenerator(getAttributeValue(element, "key-generator", this.keyGenerator));
	builder.setCacheManager(getAttributeValue(element, "cache-manager", this.cacheManager));
	builder.setCondition(getAttributeValue(element, "condition", this.condition));

	if (StringUtils.hasText(builder.getKey()) && StringUtils.hasText(builder.getKeyGenerator())) {
		throw new IllegalStateException("Invalid cache advice configuration on '"
				+ element.toString() + "'. Both 'key' and 'keyGenerator' attributes have been set. " +
				"These attributes are mutually exclusive: either set the SpEL expression used to" +
				"compute the key at runtime or set the name of the KeyGenerator bean to use.");
	}

	return builder;
}
 
源代码6 项目: lams   文件: CacheAdviceParser.java
String merge(Element element, ReaderContext readerCtx) {
	String method = element.getAttribute(METHOD_ATTRIBUTE);
	if (StringUtils.hasText(method)) {
		return method.trim();
	}
	if (StringUtils.hasText(this.method)) {
		return this.method;
	}
	readerCtx.error("No method specified for " + element.getNodeName(), element);
	return null;
}
 
源代码7 项目: spring4-understanding   文件: CacheAdviceParser.java
<T extends CacheOperation> T merge(Element element, ReaderContext readerCtx, T op) {
	String cache = element.getAttribute("cache");

	// sanity check
	String[] localCaches = caches;
	if (StringUtils.hasText(cache)) {
		localCaches = StringUtils.commaDelimitedListToStringArray(cache.trim());
	}
	else {
		if (caches == null) {
			readerCtx.error("No cache specified specified for " + element.getNodeName(), element);
		}
	}
	op.setCacheNames(localCaches);

	op.setKey(getAttributeValue(element, "key", this.key));
	op.setKeyGenerator(getAttributeValue(element, "key-generator", this.keyGenerator));
	op.setCacheManager(getAttributeValue(element, "cache-manager", this.cacheManager));
	op.setCondition(getAttributeValue(element, "condition", this.condition));

	if (StringUtils.hasText(op.getKey()) && StringUtils.hasText(op.getKeyGenerator())) {
		throw new IllegalStateException("Invalid cache advice configuration on '"
				+ element.toString() + "'. Both 'key' and 'keyGenerator' attributes have been set. " +
				"These attributes are mutually exclusive: either set the SpEL expression used to" +
				"compute the key at runtime or set the name of the KeyGenerator bean to use.");
	}

	return op;
}
 
源代码8 项目: spring4-understanding   文件: CacheAdviceParser.java
String merge(Element element, ReaderContext readerCtx) {
	String method = element.getAttribute(METHOD_ATTRIBUTE);
	if (StringUtils.hasText(method)) {
		return method.trim();
	}
	if (StringUtils.hasText(this.method)) {
		return this.method;
	}
	readerCtx.error("No method specified for " + element.getNodeName(), element);
	return null;
}
 
 类方法
 同包方法