|
|
|
|
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
|
|
|
|
/* |
|
|
|
|
* Copyright 2002-2018 the original author or authors. |
|
|
|
|
* Copyright 2002-2021 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. |
|
|
|
|
@ -19,7 +19,7 @@ package org.springframework.expression;
@@ -19,7 +19,7 @@ package org.springframework.expression;
|
|
|
|
|
/** |
|
|
|
|
* A bean resolver can be registered with the evaluation context and will kick in |
|
|
|
|
* for bean references: {@code @myBeanName} and {@code &myBeanName} expressions. |
|
|
|
|
* The <tt>&</tt> variant syntax allows access to the factory bean where relevant. |
|
|
|
|
* The {@code &} variant syntax allows access to the factory bean where relevant. |
|
|
|
|
* |
|
|
|
|
* @author Andy Clement |
|
|
|
|
* @since 3.0.3 |
|
|
|
|
@ -28,7 +28,7 @@ public interface BeanResolver {
@@ -28,7 +28,7 @@ public interface BeanResolver {
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Look up a bean by the given name and return a corresponding instance for it. |
|
|
|
|
* For attempting access to a factory bean, the name needs a <tt>&</tt> prefix. |
|
|
|
|
* For attempting access to a factory bean, the name needs a {@code &} prefix. |
|
|
|
|
* @param context the current evaluation context |
|
|
|
|
* @param beanName the name of the bean to look up |
|
|
|
|
* @return an object representing the bean |
|
|
|
|
|