Cargando…

Beginning Spring 5 : from novice to professional /

Get started with Spring Framework 5 and its ecosystem, with a guide to the working practices in modern development. This book will teach you how to use the Spring Framework to build Java-based applications, web applications, and microservices. Youll see how Spring has drastically and positively affe...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autores principales: Ottinger, Joseph B. (Autor), Lombardi, Andrew (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: New York : Apress, [2019]
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_on1120719922
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu|||unuuu
008 190923s2019 nyua ob 001 0 eng d
040 |a GW5XE  |b eng  |e rda  |e pn  |c GW5XE  |d OCLCF  |d EBLCP  |d UKMGB  |d LQU  |d UMI  |d OCLCQ  |d OTZ  |d OCLCQ  |d SFB  |d TOH  |d VT2  |d SNK  |d OCLCQ  |d OCLCO  |d UKAHL  |d BRF  |d OCLCO  |d OCLCQ  |d OCLCO  |d COM  |d OCLCQ 
015 |a GBB9G3388  |2 bnb 
016 7 |a 019542191  |2 Uk 
019 |a 1119631901  |a 1121268291  |a 1122564780  |a 1125073604  |a 1125857867  |a 1129177524  |a 1129199233  |a 1129368077  |a 1136390759  |a 1138972087  |a 1152548349 
020 |a 9781484244869  |q (electronic bk.) 
020 |a 1484244869  |q (electronic bk.) 
020 |a 1484244850 
020 |a 9781484244852 
020 |a 9781484244876  |q (print) 
020 |a 1484244877 
020 |z 9781484244852 
024 7 |a 10.1007/978-1-4842-4486-9  |2 doi 
024 8 |a 10.1007/978-1-4842-4 
024 8 |a 9781484244852 
024 8 |a 9781484244869 
029 1 |a AU@  |b 000066120959 
029 1 |a AU@  |b 000066123885 
029 1 |a AU@  |b 000066141411 
029 1 |a AU@  |b 000069026535 
029 1 |a UKMGB  |b 019542191 
035 |a (OCoLC)1120719922  |z (OCoLC)1119631901  |z (OCoLC)1121268291  |z (OCoLC)1122564780  |z (OCoLC)1125073604  |z (OCoLC)1125857867  |z (OCoLC)1129177524  |z (OCoLC)1129199233  |z (OCoLC)1129368077  |z (OCoLC)1136390759  |z (OCoLC)1138972087  |z (OCoLC)1152548349 
037 |a com.springer.onix.9781484244869  |b Springer Nature 
050 4 |a QA76.73.J38  |b O88 2019eb 
072 7 |a UMX  |2 bicssc 
072 7 |a COM051280  |2 bisacsh 
072 7 |a UMX  |2 thema 
082 0 4 |a 005.2/762  |2 23 
049 |a UAMI 
100 1 |a Ottinger, Joseph B.,  |e author. 
245 1 0 |a Beginning Spring 5 :  |b from novice to professional /  |c Joseph B. Ottinger, Andrew Lombardi. 
264 1 |a New York :  |b Apress,  |c [2019] 
264 4 |c ©2019 
300 |a 1 online resource :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
588 0 |a Online resource; title from PDF title page (SpringerLink, viewed September 23, 2019). 
504 |a Includes bibliographical references and index. 
505 0 |a 1. History and justificationThis chapter introduces Spring, and rather surprisingly explains Spring's history and justification, largely as a logical response to overengineered and difficult-to-configure J2EE applications, as well as Spring's eventual participation in the JCP via the CDI specification. Along the way we'll explain some of the architectural models that opened the door to Spring's development and deployment paradigms.2. Hello, worldThis is a simple application that displays "Hello, World" on a terminal -- along with demonstrating the build lifecycle, configuration, testing, and other such processes. The application is purposefully simple and overengineered beyond reason, but to demonstrate how one can know that an application works; it also introduces tooling and processes. The second part of the chapter will exaggerate the features of the simple 'Hello World' and demonstrate some of the power of Spring -- by using the simple template and expanding functionality far beyond simply saying 'Hello, World' without changing the basic structure of the application.3. Configuration and declaration of beansThis chapter explores various configuration options for declaring Spring beans and dependencies, in source code and external configuration, and covers many of the more common options one might use (and why they might be relevant.)4. LifecycleThis chapter completes the configuration information, going into what happens and when in the lifecycle of a Spring application context and the beans it uses. Here, readers will see a lot more about how Spring affects and empowers their actual development process, while offering fine-grained control of when and how component services are controlled.5. Spring and Java EEThis chapter deploys our Spring application -- now a module -- into a Java EE application server, allowing access to container services while retaining Spring's ease of configuration and testing.6. Spring WebIn the previous chapter we used Spring components in a web application; in this chapter we demonstrate using Spring to actually process the web requests directly, as opposed to delegating to Spring components from traditional Java EE entry points.7. Spring ReactiveMost programming is fairly proactive -- even when programs are event-driven, programs manhandle their input through an entire chain of processes to create a result. Reactive programming reduces programming to a set of simple inputs and outputs, which yields high scalability and simple modular coding. Spring has a project for exactly this purpose.8. Persistence with Spring and Spring DataThis chapter introduces Spring's interactions with various persistence mechanisms, such as JDBC, JDBI, and JPA (including Hibernate), and segues into Spring Data, a module that provides abstract and convenient access to the concept of a data repository.9. Spring BootThis chapter introduces Spring Boot, a framework designed to help design and deploy applications that don't require an explicit Java EE container. With Spring Boot, one doesn't create a Java EE component with a separate deployment and configuration step; with Boot, one writes an application and deploys and configures it directly.10. Spring CloudA distributed environment has common patterns and this chapter dives in depth into the offering within Spring Cloud. You'll learn how to use features such as configuration management, service registration and discovery, routing, deployment into various cloud platforms, and much more. 
520 |a Get started with Spring Framework 5 and its ecosystem, with a guide to the working practices in modern development. This book will teach you how to use the Spring Framework to build Java-based applications, web applications, and microservices. Youll see how Spring has drastically and positively affected the way we program and design applications in Java. Beginning Spring 5 discusses how you can build apps with the Spring mindset and what the benefits of that mindset are. Along the way you will learn many aspects of the Spring ecosystem with easy-to-understand applications designed to teach you not only the technology, but also the practices that benefit the most from Spring. You will: Discover the most common use cases encountered in the real world Create reliable, tested, modular software, building skills that will translate well across all languages and environments. Integrate and use data access and persistence frameworks such as Hibernate, JPA, and MongoDB Program functional or reactive Java with the latest Spring 5 features including WebFlux. 
542 |f © Copyright 2019 Joseph B. Ottinger and Andrew Lombardi.  |g 2019 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Java (Computer program language) 
650 0 |a Application software  |x Development. 
650 6 |a Java (Langage de programmation) 
650 6 |a Logiciels d'application  |x Développement. 
650 7 |a Application software  |x Development.  |2 fast  |0 (OCoLC)fst00811707 
650 7 |a Java (Computer program language)  |2 fast  |0 (OCoLC)fst00982065 
700 1 |a Lombardi, Andrew,  |e author. 
776 0 8 |i Print version:  |a Ottinger, Joseph B.  |t Beginning Spring 5 : From Novice to Professional.  |d Berkeley, CA : Apress L.P., ©2019  |z 9781484244852 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484244869/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH36710596 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL5892686 
994 |a 92  |b IZTAP