Skip to content

Commit 320f08a

Browse files
author
Rob Harrop
committed
[SPR-6017] a few more tweaks to how getLocalName is handled
1 parent bb70c9a commit 320f08a

File tree

2 files changed

+27
-8
lines changed

2 files changed

+27
-8
lines changed

org.springframework.beans/src/main/java/org/springframework/beans/factory/xml/AbstractSimpleBeanDefinitionParser.java

+24-5
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ public abstract class AbstractSimpleBeanDefinitionParser extends AbstractSingleB
124124
* @see #extractPropertyName(String)
125125
*/
126126
@Override
127-
protected final void doParse(Element element, BeanDefinitionBuilder builder) {
127+
protected void doParse(Element element, ParserContext parserContext, BeanDefinitionBuilder builder) {
128128
NamedNodeMap attributes = element.getAttributes();
129129
for (int x = 0; x < attributes.getLength(); x++) {
130130
Attr attribute = (Attr) attributes.item(x);
131-
if (isEligibleAttribute(attribute)) {
131+
if (isEligibleAttribute(attribute, parserContext)) {
132132
String propertyName = extractPropertyName(attribute.getLocalName());
133133
Assert.state(StringUtils.hasText(propertyName),
134134
"Illegal property name returned from 'extractPropertyName(String)': cannot be null or empty.");
@@ -144,12 +144,31 @@ protected final void doParse(Element element, BeanDefinitionBuilder builder) {
144144
* <p>The default implementation considers any attribute as eligible,
145145
* except for the "id" attribute and namespace declaration attributes.
146146
* @param attribute the XML attribute to check
147+
* @param parserContext the <code>ParserContext</code>
147148
* @see #isEligibleAttribute(String)
148149
*/
150+
protected boolean isEligibleAttribute(Attr attribute, ParserContext parserContext) {
151+
boolean eligible = isEligibleAttribute(attribute);
152+
if(!eligible) {
153+
String fullName = attribute.getName();
154+
eligible = (!fullName.equals("xmlns") && !fullName.startsWith("xmlns:") &&
155+
isEligibleAttribute(parserContext.getDelegate().getLocalName(attribute)));
156+
}
157+
return eligible;
158+
}
159+
160+
/**
161+
* Determine whether the given attribute is eligible for being
162+
* turned into a corresponding bean property value.
163+
* <p>The default implementation considers any attribute as eligible,
164+
* except for the "id" attribute and namespace declaration attributes.
165+
* @param attribute the XML attribute to check
166+
* @see #isEligibleAttribute(String)
167+
* @deprecated in favour of {@link #isEligibleAttribute(org.w3c.dom.Attr, ParserContext)}
168+
*/
169+
@Deprecated
149170
protected boolean isEligibleAttribute(Attr attribute) {
150-
String fullName = attribute.getName();
151-
return (!fullName.equals("xmlns") && !fullName.startsWith("xmlns:") &&
152-
isEligibleAttribute(attribute.getLocalName()));
171+
return false;
153172
}
154173

155174
/**

org.springframework.context/src/main/java/org/springframework/context/annotation/ComponentScanBeanDefinitionParser.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ protected ClassPathBeanDefinitionScanner configureScanner(ParserContext parserCo
119119
readerContext.error(ex.getMessage(), readerContext.extractSource(element), ex.getCause());
120120
}
121121

122-
parseTypeFilters(element, scanner, readerContext);
122+
parseTypeFilters(element, scanner, readerContext, parserContext);
123123

124124
return scanner;
125125
}
@@ -194,15 +194,15 @@ else if ("no".equals(mode)) {
194194
}
195195

196196
protected void parseTypeFilters(
197-
Element element, ClassPathBeanDefinitionScanner scanner, XmlReaderContext readerContext) {
197+
Element element, ClassPathBeanDefinitionScanner scanner, XmlReaderContext readerContext, ParserContext parserContext) {
198198

199199
// Parse exclude and include filter elements.
200200
ClassLoader classLoader = scanner.getResourceLoader().getClassLoader();
201201
NodeList nodeList = element.getChildNodes();
202202
for (int i = 0; i < nodeList.getLength(); i++) {
203203
Node node = nodeList.item(i);
204204
if (node.getNodeType() == Node.ELEMENT_NODE) {
205-
String localName = node.getLocalName();
205+
String localName = parserContext.getDelegate().getLocalName(node);
206206
try {
207207
if (INCLUDE_FILTER_ELEMENT.equals(localName)) {
208208
TypeFilter typeFilter = createTypeFilter((Element) node, classLoader);

0 commit comments

Comments
 (0)