Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Spring 5.0 Cookbook

You're reading from   Spring 5.0 Cookbook Recipes to build, test, and run Spring applications efficiently

Arrow left icon
Product type Paperback
Published in Sep 2017
Publisher Packt
ISBN-13 9781787128316
Length 670 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Sherwin John C. Tragura Sherwin John C. Tragura
Author Profile Icon Sherwin John C. Tragura
Sherwin John C. Tragura
Arrow right icon
View More author details
Toc

Table of Contents (14) Chapters Close

Preface 1. Getting Started with Spring FREE CHAPTER 2. Learning Dependency Injection (DI) 3. Implementing MVC Design Patterns 4. Securing Spring MVC Applications 5. Cross-Cutting the MVC 6. Functional Programming 7. Reactive Programming 8. Reactive Web Applications 9. Spring Boot 2.0 10. The Microservices 11. Batch and Message-Driven Processes 12. Other Spring 5 Features 13. Testing Spring 5 Components

Creating an inner bean


When there are beans that can only be called once by some certain top-level beans, it will be easier to manage the ApplicationContext definition if we allow these objects to be inner beans. This recipe will show you how to create inner beans to some objects that exclusively use them.

Getting started

Both the ch02-xml and ch02-xml projects can be utilized separately on this recipe since each container creates inner beans differently.

How to do it...

Perform the following to create inner beans:

  1. In the ch02-xml, inject an Employee object, applying method injection for the actual values:
<bean id="empRec4" class="org.packt.starter.ioc.model.Employee"> 
  <property name="firstName" value="Gabriela"/> 
  <property name="lastName" value="Silang"/> 
  <property name="age" value="67"/> 
  <property name="birthdate" value="June 19, 1950"/> 
  <property name="position" value="writer"/> 
  <property name="salary" value="897000"/> 
</bean...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime