From 1b1a69a144f657d46c752f1c017f64d3302891d2 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Mon, 12 Mar 2018 13:27:48 +0100 Subject: [PATCH] SimpleAliasRegistry fully synchronizes registerAlias and removeAlias Issue: SPR-16577 --- .../core/SimpleAliasRegistry.java | 44 ++++++++++--------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/SimpleAliasRegistry.java b/spring-core/src/main/java/org/springframework/core/SimpleAliasRegistry.java index fce74208111..0e676c43eb5 100644 --- a/spring-core/src/main/java/org/springframework/core/SimpleAliasRegistry.java +++ b/spring-core/src/main/java/org/springframework/core/SimpleAliasRegistry.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2017 the original author or authors. + * Copyright 2002-2018 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -45,23 +45,25 @@ public class SimpleAliasRegistry implements AliasRegistry { public void registerAlias(String name, String alias) { Assert.hasText(name, "'name' must not be empty"); Assert.hasText(alias, "'alias' must not be empty"); - if (alias.equals(name)) { - this.aliasMap.remove(alias); - } - else { - String registeredName = this.aliasMap.get(alias); - if (registeredName != null) { - if (registeredName.equals(name)) { - // An existing alias - no need to re-register - return; - } - if (!allowAliasOverriding()) { - throw new IllegalStateException("Cannot register alias '" + alias + "' for name '" + - name + "': It is already registered for name '" + registeredName + "'."); - } + synchronized (this.aliasMap) { + if (alias.equals(name)) { + this.aliasMap.remove(alias); + } + else { + String registeredName = this.aliasMap.get(alias); + if (registeredName != null) { + if (registeredName.equals(name)) { + // An existing alias - no need to re-register + return; + } + if (!allowAliasOverriding()) { + throw new IllegalStateException("Cannot register alias '" + alias + "' for name '" + + name + "': It is already registered for name '" + registeredName + "'."); + } + } + checkForAliasCircle(name, alias); + this.aliasMap.put(alias, name); } - checkForAliasCircle(name, alias); - this.aliasMap.put(alias, name); } } @@ -92,9 +94,11 @@ public class SimpleAliasRegistry implements AliasRegistry { @Override public void removeAlias(String alias) { - String name = this.aliasMap.remove(alias); - if (name == null) { - throw new IllegalStateException("No alias '" + alias + "' registered"); + synchronized (this.aliasMap) { + String name = this.aliasMap.remove(alias); + if (name == null) { + throw new IllegalStateException("No alias '" + alias + "' registered"); + } } }