Spring 5 recipes : a problem-solution approach /
Main Author: | |
---|---|
Other Authors: | , |
Format: | Book |
Language: | English |
Published: |
United States :
Apress,
c2017.
|
Edition: | Fourth edition. |
Subjects: | |
Classic Catalogue: | View this record in Classic Catalogue |
Table of Contents:
- ""Contents at a Glance""; ""Contents""; ""About the Authors""; ""About the Technical Reviewer""; ""Acknowledgments""; ""Introduction""; ""Chapter 1: Spring Development Tools""; ""1-1. Build a Spring Application with the Spring Tool Suite""; ""Problem""; ""Solution""; ""How It Works""; ""Importing and Building a Maven Project""; ""Importing and Building a Gradle Project""; ""1-2. Build a Spring Application with the IntelliJ IDE""; ""Problem""; ""Solution""; ""How It Works""; ""Creating a Spring Application""; ""Importing and Building a Maven Project""
- ""Importing and Building a Gradle Project""""1-3. Build a Spring Application with the Maven Command-Line Interface""; ""Problem""; ""Solution""; ""How It Works""; ""1-4. Build a Spring Application with the Gradle Wrapper""; ""Problem""; ""Solution""; ""How It Works""; ""1-5. Build a Spring Application with the Gradle Command-Line Interface""; ""Problem""; ""Solution""; ""How It Works""; ""1-6. Build a Spring Application with the Gradle Wrapper""; ""Problem""; ""Solution""; ""How It Works""; ""Summary""; ""Chapter 2: Spring Core Tasks""; ""2-1. Use a Java Config to Configure POJOs""
- ""Problem""""Solution""; ""How It Works""; ""Create a Java Config with @Configuration and @Bean to Create POJOs""; ""Instantiate the Spring IoC Container to Scan for Annotations""; ""Get POJO Instances or Beans from the IoC Container""; ""Create POJO Class with the @Component Annotation to Create Beans with DAO""; ""Instantiate the Spring IoC Container with Filters to Scan for Annotations""; ""Get POJO Instances or Beans from the IoC Container""; ""2-2. Create POJOs by Invoking a Constructor""; ""Problem""; ""Solution""; ""How It Works""; ""Create the POJO Classes with Constructors""
- ""Create a Java Config for Your POJO""""2-3. Use POJO References and Autowiring to Interact with Other POJOs""; ""Problem""; ""Solution""; ""How It Works""; ""Reference POJOs in a Java Config Class""; ""Autowire POJO Fields with the @Autowired Annotation""; ""Autowire POJO Methods and Constructors with the @Autowired Annotation and Make Autowiring Optional""; ""Resolve Autowire Ambiguity with Annotations""; ""Resolve Autowire Ambiguity with the @Primary Annotation""; ""Resolve Autowire Ambiguity with the @Qualifier Annotation""; ""Resolve POJO References from Multiple Locations""
- ""2-4. Autowire POJOs with the @Resource and @Inject Annotations""""Problem""; ""Solution""; ""How It Works""; ""Autowire POJOs with the @Resource Annotation""; ""Autowire POJOs with the @Inject Annotation""; ""2-5. Set a POJO#́x80;#x99;s Scope with the @Scope Annotation""; ""Problem""; ""Solution""; ""How It Works""; ""2-6. Use Data from External Resources (Text Files, XML Files, Properties Files, or Image Files)""; ""Problem""; ""Solution""; ""How It Works""; ""Use Properties File Data to Set Up POJO Instantiation Values""; ""Use Data from Any External Resource File for Use in a POJO""