File tree 2 files changed +7
-4
lines changed
spring-expression/src/main/java/org/springframework/expression/spel 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ public enum SpelMessage {
212
212
"No bean resolver registered in the context to resolve access to bean ''{0}''" ),
213
213
214
214
EXCEPTION_DURING_BEAN_RESOLUTION (Kind .ERROR , 1058 ,
215
- "A problem occurred when trying to resolve bean ''{0}'':''{1}''" ),
215
+ "A problem occurred when trying to resolve bean ''{0}'': ''{1}''" ),
216
216
217
217
INVALID_BEAN_REFERENCE (Kind .ERROR , 1059 ,
218
218
"@ or & can only be followed by an identifier or a quoted name" ),
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2021 the original author or authors.
2
+ * Copyright 2002-2024 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
25
25
import org .springframework .expression .spel .SpelMessage ;
26
26
27
27
/**
28
- * Represents a bean reference to a type, for example {@code @foo} or {@code @'foo.bar'}.
29
- * For a FactoryBean the syntax {@code &foo} can be used to access the factory itself.
28
+ * Represents a reference to a bean, for example {@code @orderService} or
29
+ * {@code @'order.service'}.
30
+ *
31
+ * <p>For a {@link org.springframework.beans.factory.FactoryBean FactoryBean}, the
32
+ * syntax {@code &orderServiceFactory} can be used to access the factory itself.
30
33
*
31
34
* @author Andy Clement
32
35
*/
You can’t perform that action at this time.
0 commit comments