Source Code Cross Referenced for AnnotationBeanWiringInfoResolver.java in  » J2EE » spring-framework-2.5 » org » springframework » beans » factory » annotation » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » spring framework 2.5 » org.springframework.beans.factory.annotation 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Copyright 2002-2007 the original author or authors.
03:         *
04:         * Licensed under the Apache License, Version 2.0 (the "License");
05:         * you may not use this file except in compliance with the License.
06:         * You may obtain a copy of the License at
07:         *
08:         *      http://www.apache.org/licenses/LICENSE-2.0
09:         *
10:         * Unless required by applicable law or agreed to in writing, software
11:         * distributed under the License is distributed on an "AS IS" BASIS,
12:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13:         * See the License for the specific language governing permissions and
14:         * limitations under the License.
15:         */
16:
17:        package org.springframework.beans.factory.annotation;
18:
19:        import org.springframework.beans.factory.wiring.BeanWiringInfo;
20:        import org.springframework.beans.factory.wiring.BeanWiringInfoResolver;
21:        import org.springframework.util.Assert;
22:        import org.springframework.util.ClassUtils;
23:
24:        /**
25:         * {@link org.springframework.beans.factory.wiring.BeanWiringInfoResolver} that
26:         * uses the Configurable annotation to identify which classes need autowiring.
27:         * The bean name to look up will be taken from the {@link Configurable} annotation
28:         * if specified; otherwise the default will be the fully-qualified name of the
29:         * class being configured.
30:         *
31:         * @author Rod Johnson
32:         * @author Juergen Hoeller
33:         * @since 2.0
34:         * @see Configurable
35:         * @see org.springframework.beans.factory.wiring.ClassNameBeanWiringInfoResolver
36:         */
37:        public class AnnotationBeanWiringInfoResolver implements 
38:                BeanWiringInfoResolver {
39:
40:            public BeanWiringInfo resolveWiringInfo(Object beanInstance) {
41:                Assert.notNull(beanInstance, "Bean instance must not be null");
42:                Configurable annotation = beanInstance.getClass()
43:                        .getAnnotation(Configurable.class);
44:                return (annotation != null ? buildWiringInfo(beanInstance,
45:                        annotation) : null);
46:            }
47:
48:            /**
49:             * Build the BeanWiringInfo for the given Configurable annotation.
50:             * @param beanInstance the bean instance
51:             * @param annotation the Configurable annotation found on the bean class
52:             * @return the resolved BeanWiringInfo
53:             */
54:            protected BeanWiringInfo buildWiringInfo(Object beanInstance,
55:                    Configurable annotation) {
56:                if (!Autowire.NO.equals(annotation.autowire())) {
57:                    return new BeanWiringInfo(annotation.autowire().value(),
58:                            annotation.dependencyCheck());
59:                } else {
60:                    if (!"".equals(annotation.value())) {
61:                        // explicitly specified bean name
62:                        return new BeanWiringInfo(annotation.value(), false);
63:                    } else {
64:                        // default bean name
65:                        return new BeanWiringInfo(
66:                                getDefaultBeanName(beanInstance), true);
67:                    }
68:                }
69:            }
70:
71:            /**
72:             * Determine the default bean name for the specified bean instance.
73:             * <p>The default implementation returns the superclass name for a CGLIB
74:             * proxy and the name of the plain bean class else.
75:             * @param beanInstance the bean instance to build a default name for
76:             * @return the default bean name to use
77:             * @see org.springframework.util.ClassUtils#getUserClass(Class)
78:             */
79:            protected String getDefaultBeanName(Object beanInstance) {
80:                return ClassUtils.getUserClass(beanInstance).getName();
81:            }
82:
83:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.