Merge branch '5.1.x'
This commit is contained in:
commit
fd86f34057
|
|
@ -643,6 +643,9 @@ public class BeanDefinitionParserDelegate {
|
||||||
parentName, className, this.readerContext.getBeanClassLoader());
|
parentName, className, this.readerContext.getBeanClassLoader());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse the meta elements underneath the given element, if any.
|
||||||
|
*/
|
||||||
public void parseMetaElements(Element ele, BeanMetadataAttributeAccessor attributeAccessor) {
|
public void parseMetaElements(Element ele, BeanMetadataAttributeAccessor attributeAccessor) {
|
||||||
NodeList nl = ele.getChildNodes();
|
NodeList nl = ele.getChildNodes();
|
||||||
for (int i = 0; i < nl.getLength(); i++) {
|
for (int i = 0; i < nl.getLength(); i++) {
|
||||||
|
|
@ -658,23 +661,27 @@ public class BeanDefinitionParserDelegate {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse the given autowire attribute value into
|
||||||
|
* {@link AbstractBeanDefinition} autowire constants.
|
||||||
|
*/
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public int getAutowireMode(String attValue) {
|
public int getAutowireMode(String attrValue) {
|
||||||
String att = attValue;
|
String attr = attrValue;
|
||||||
if (isDefaultValue(att)) {
|
if (isDefaultValue(attr)) {
|
||||||
att = this.defaults.getAutowire();
|
attr = this.defaults.getAutowire();
|
||||||
}
|
}
|
||||||
int autowire = AbstractBeanDefinition.AUTOWIRE_NO;
|
int autowire = AbstractBeanDefinition.AUTOWIRE_NO;
|
||||||
if (AUTOWIRE_BY_NAME_VALUE.equals(att)) {
|
if (AUTOWIRE_BY_NAME_VALUE.equals(attr)) {
|
||||||
autowire = AbstractBeanDefinition.AUTOWIRE_BY_NAME;
|
autowire = AbstractBeanDefinition.AUTOWIRE_BY_NAME;
|
||||||
}
|
}
|
||||||
else if (AUTOWIRE_BY_TYPE_VALUE.equals(att)) {
|
else if (AUTOWIRE_BY_TYPE_VALUE.equals(attr)) {
|
||||||
autowire = AbstractBeanDefinition.AUTOWIRE_BY_TYPE;
|
autowire = AbstractBeanDefinition.AUTOWIRE_BY_TYPE;
|
||||||
}
|
}
|
||||||
else if (AUTOWIRE_CONSTRUCTOR_VALUE.equals(att)) {
|
else if (AUTOWIRE_CONSTRUCTOR_VALUE.equals(attr)) {
|
||||||
autowire = AbstractBeanDefinition.AUTOWIRE_CONSTRUCTOR;
|
autowire = AbstractBeanDefinition.AUTOWIRE_CONSTRUCTOR;
|
||||||
}
|
}
|
||||||
else if (AUTOWIRE_AUTODETECT_VALUE.equals(att)) {
|
else if (AUTOWIRE_AUTODETECT_VALUE.equals(attr)) {
|
||||||
autowire = AbstractBeanDefinition.AUTOWIRE_AUTODETECT;
|
autowire = AbstractBeanDefinition.AUTOWIRE_AUTODETECT;
|
||||||
}
|
}
|
||||||
// Else leave default value.
|
// Else leave default value.
|
||||||
|
|
@ -953,6 +960,12 @@ public class BeanDefinitionParserDelegate {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a value, ref or collection sub-element of a property or
|
||||||
|
* constructor-arg element.
|
||||||
|
* @param ele subelement of property element; we don't know which yet
|
||||||
|
* @param bd the current bean definition (if any)
|
||||||
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public Object parsePropertySubElement(Element ele, @Nullable BeanDefinition bd) {
|
public Object parsePropertySubElement(Element ele, @Nullable BeanDefinition bd) {
|
||||||
return parsePropertySubElement(ele, bd, null);
|
return parsePropertySubElement(ele, bd, null);
|
||||||
|
|
@ -962,6 +975,7 @@ public class BeanDefinitionParserDelegate {
|
||||||
* Parse a value, ref or collection sub-element of a property or
|
* Parse a value, ref or collection sub-element of a property or
|
||||||
* constructor-arg element.
|
* constructor-arg element.
|
||||||
* @param ele subelement of property element; we don't know which yet
|
* @param ele subelement of property element; we don't know which yet
|
||||||
|
* @param bd the current bean definition (if any)
|
||||||
* @param defaultValueType the default type (class name) for any
|
* @param defaultValueType the default type (class name) for any
|
||||||
* {@code <value>} tag that might be created
|
* {@code <value>} tag that might be created
|
||||||
*/
|
*/
|
||||||
|
|
@ -1347,11 +1361,22 @@ public class BeanDefinitionParserDelegate {
|
||||||
return TRUE_VALUE.equals(value);
|
return TRUE_VALUE.equals(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a custom element (outside of the default namespace).
|
||||||
|
* @param ele the element to parse
|
||||||
|
* @return the resulting bean definition
|
||||||
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public BeanDefinition parseCustomElement(Element ele) {
|
public BeanDefinition parseCustomElement(Element ele) {
|
||||||
return parseCustomElement(ele, null);
|
return parseCustomElement(ele, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a custom element (outside of the default namespace).
|
||||||
|
* @param ele the element to parse
|
||||||
|
* @param containingBd the containing bean definition (if any)
|
||||||
|
* @return the resulting bean definition
|
||||||
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public BeanDefinition parseCustomElement(Element ele, @Nullable BeanDefinition containingBd) {
|
public BeanDefinition parseCustomElement(Element ele, @Nullable BeanDefinition containingBd) {
|
||||||
String namespaceUri = getNamespaceURI(ele);
|
String namespaceUri = getNamespaceURI(ele);
|
||||||
|
|
@ -1366,14 +1391,27 @@ public class BeanDefinitionParserDelegate {
|
||||||
return handler.parse(ele, new ParserContext(this.readerContext, this, containingBd));
|
return handler.parse(ele, new ParserContext(this.readerContext, this, containingBd));
|
||||||
}
|
}
|
||||||
|
|
||||||
public BeanDefinitionHolder decorateBeanDefinitionIfRequired(Element ele, BeanDefinitionHolder definitionHolder) {
|
/**
|
||||||
return decorateBeanDefinitionIfRequired(ele, definitionHolder, null);
|
* Decorate the given bean definition through a namespace handler, if applicable.
|
||||||
|
* @param ele the current element
|
||||||
|
* @param originalDef the current bean definition
|
||||||
|
* @return the decorated bean definition
|
||||||
|
*/
|
||||||
|
public BeanDefinitionHolder decorateBeanDefinitionIfRequired(Element ele, BeanDefinitionHolder originalDef) {
|
||||||
|
return decorateBeanDefinitionIfRequired(ele, originalDef, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decorate the given bean definition through a namespace handler, if applicable.
|
||||||
|
* @param ele the current element
|
||||||
|
* @param originalDef the current bean definition
|
||||||
|
* @param containingBd the containing bean definition (if any)
|
||||||
|
* @return the decorated bean definition
|
||||||
|
*/
|
||||||
public BeanDefinitionHolder decorateBeanDefinitionIfRequired(
|
public BeanDefinitionHolder decorateBeanDefinitionIfRequired(
|
||||||
Element ele, BeanDefinitionHolder definitionHolder, @Nullable BeanDefinition containingBd) {
|
Element ele, BeanDefinitionHolder originalDef, @Nullable BeanDefinition containingBd) {
|
||||||
|
|
||||||
BeanDefinitionHolder finalDefinition = definitionHolder;
|
BeanDefinitionHolder finalDefinition = originalDef;
|
||||||
|
|
||||||
// Decorate based on custom attributes first.
|
// Decorate based on custom attributes first.
|
||||||
NamedNodeMap attributes = ele.getAttributes();
|
NamedNodeMap attributes = ele.getAttributes();
|
||||||
|
|
@ -1393,6 +1431,14 @@ public class BeanDefinitionParserDelegate {
|
||||||
return finalDefinition;
|
return finalDefinition;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decorate the given bean definition through a namespace handler,
|
||||||
|
* if applicable.
|
||||||
|
* @param node the current child node
|
||||||
|
* @param originalDef the current bean definition
|
||||||
|
* @param containingBd the containing bean definition (if any)
|
||||||
|
* @return the decorated bean definition
|
||||||
|
*/
|
||||||
public BeanDefinitionHolder decorateIfRequired(
|
public BeanDefinitionHolder decorateIfRequired(
|
||||||
Node node, BeanDefinitionHolder originalDef, @Nullable BeanDefinition containingBd) {
|
Node node, BeanDefinitionHolder originalDef, @Nullable BeanDefinition containingBd) {
|
||||||
|
|
||||||
|
|
@ -1473,10 +1519,16 @@ public class BeanDefinitionParserDelegate {
|
||||||
return desiredName.equals(node.getNodeName()) || desiredName.equals(getLocalName(node));
|
return desiredName.equals(node.getNodeName()) || desiredName.equals(getLocalName(node));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the given URI indicates the default namespace.
|
||||||
|
*/
|
||||||
public boolean isDefaultNamespace(@Nullable String namespaceUri) {
|
public boolean isDefaultNamespace(@Nullable String namespaceUri) {
|
||||||
return (!StringUtils.hasLength(namespaceUri) || BEANS_NAMESPACE_URI.equals(namespaceUri));
|
return (!StringUtils.hasLength(namespaceUri) || BEANS_NAMESPACE_URI.equals(namespaceUri));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine whether the given node indicates the default namespace.
|
||||||
|
*/
|
||||||
public boolean isDefaultNamespace(Node node) {
|
public boolean isDefaultNamespace(Node node) {
|
||||||
return isDefaultNamespace(getNamespaceURI(node));
|
return isDefaultNamespace(getNamespaceURI(node));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2018 the original author or authors.
|
* Copyright 2002-2019 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -203,6 +203,10 @@ public class TransactionAwareDataSourceProxy extends DelegatingDataSource {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (method.getName().equals("getWarnings") || method.getName().equals("clearWarnings")) {
|
||||||
|
// Avoid creation of target Connection on pre-close cleanup (e.g. in Hibernate Session)
|
||||||
|
return null;
|
||||||
|
}
|
||||||
else if (method.getName().equals("close")) {
|
else if (method.getName().equals("close")) {
|
||||||
// Handle close method: only close if not within a transaction.
|
// Handle close method: only close if not within a transaction.
|
||||||
DataSourceUtils.doReleaseConnection(this.target, this.targetDataSource);
|
DataSourceUtils.doReleaseConnection(this.target, this.targetDataSource);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue