Oreilly - Learn Spring Boot in 100 Steps - Beginner to Expert - 9781788996624
Oreilly - Learn Spring Boot in 100 Steps - Beginner to Expert
by Ranga Karanam | Released June 2018 | ISBN: 9781788996624


Become an expert on Spring Boot by developing a REST API and a Spring MVC web application in 100 stepsAbout This VideoAn introduction to the power of Spring Boot in 10 stepsDevelop a Todo management web application with Spring Boot in 25 stepsAn introduction to unit testing with JUnit in 5 stepsAn introduction to mocking with Mockito in 5 StepsThe advanced features of Spring Boot in 28 steps ( by developing a simple API for managing survey questionnaires)An introduction to JPA in 10 steps; connecting our Todo management web application to JPA in 8 Steps.In DetailSpring Boot has a lot of magic going for it. Developing REST services with Spring Boot is cool and fun. Spring Boot makes it easy to create stand-alone, production-grade Spring-based applications that you can just run. Most Spring Boot applications need very little Spring configuration. In this course, you will learn the features of Spring Boot and Spring Boot starter projects with a hands-on, step by step, approach to developing. You'll make a basic Todo management Java application using Spring Boot with Login and Logout functionalities, and basic REST service to manage survey questionnaire. You will be introduced to REST services, Spring security (authentication and authorization), Maven (dependencies management), Eclipse (IDE) and the Tomcat embedded web server. We will help you set up each one of these. You will learn about Spring Boot step by step in more than 100 steps. This course is a perfect first introduction to Spring Boot. Show and hide more
  1. Chapter 1 : Introduction
    • Spring Boot Master Class - Preview 00:02:12
    • Spring Boot Master Class - Course Overview 00:02:13
    • Spring Boot Master Class - Git Repository 00:02:24
    • Spring Boot Master Class - Installing Basic Tools 00:01:14
  2. Chapter 2 : Web Application with Spring Boot
    • Step 0: Web Application with Spring Boot - Section Introduction 00:01:35
    • Step 01: Part 1 Basic Spring Boot Web Application Setup 00:09:06
    • Step 01: Part 2 Pom.xml, Spring Boot Application and application properties 00:10:59
    • Step 02: Part 1 First Spring MVC Controller, @ResponseBody, @Controller 00:14:46
    • Step 02: Part 2 Understanding HTTP Request Flow 00:02:57
    • Step 03: Demystifying some of the Spring Boot magic 00:09:32
    • Step 04: Redirect to Login JSP - @ResponseBody and View Resolver 00:08:02
    • Step 05: Show userid and password on welcome page - ModelMap and @RequestParam 00:06:50
    • Step 06: DispatcherServlet and Spring MVC Flow 00:06:10
    • Step 07: Your First HTML form 00:09:19
    • Step 08: Add hard-coded validation of user id and password 00:10:42
    • Step 09: Magic of Spring 00:09:43
    • Step 10: Create TodoController and list-todos view. Make TodoService a @Service 00:11:25
    • Step 11: Architecture of Web Applications 00:07:11
    • Step 12: Session vs Model vs Request - @SessionAttributes 00:08:33
    • Step 13: Add new todo 00:07:30
    • Step 14: Display Todos in a table using JSTL Tags 00:06:47
    • Step 15: Bootstrap for Page Formatting using webjars 00:10:38
    • Step 16: Let's delete a Todo 00:05:36
    • Step 17: Format Add Todo Page and Adding Basic HTML5 form validation 00:04:57
    • Step 18: Part 1 Validations with Hibernate Validator - Using Command Bean 00:10:40
    • Step 18: Part 2 Using JSR 349 Validations 00:09:49
    • Step 19: Updating a todo 00:11:05
    • Step 20: Let's add a Target Date for Todo - Use initBinder to Handle Date Fields 00:11:36
    • Step 21: JSP Fragments and Navigation Bar 00:09:57
    • Step 22: Preparing for Spring Security 00:06:34
    • Step 23: Initial Spring Security Setup 00:09:39
    • Step 24: Refactor and add Logout Functionality using Spring Security 00:10:04
    • Step 25: Exception Handling 00:07:52
  3. Chapter 3 : Introduction to JUnit in 5 Steps
    • Step 0: JUnit in 5 Steps - Section Introduction 00:00:46
    • Step 1: What is JUnit and Unit Testing? 00:03:55
    • Step 2: First JUnit Project and Green Bar 00:04:44
    • Step 3: First Code and First Unit Test 00:05:07
    • Step 4: Other assert methods 00:03:46
    • Step 5: Important annotations 00:05:08
  4. Chapter 4 : Introduction to Mockito in 5 Steps
    • Step 0: Mockito in 5 Steps - Section Introduction 00:00:51
    • Step 1: Setting up an example using http://start.spring.io 00:06:15
    • Step 2: Using Stubs – Disadvantages 00:04:11
    • Step 3: You’re first Mock 00:05:28
    • Step 4: Using Mockito Annotations - @Mock, @InjectMocks, @RunWith(MockitoJUnitR 00:04:35
    • Step 5: Mocking List interface 00:06:00
  5. Chapter 5 : Spring Boot Deep Dive with a simple API
    • Section Introduction - Spring Boot Deep Dive with a simple API 00:01:42
    • Step 01: Setup and Launch Spring Boot Application with Maven and Eclipse 00:08:36
    • Step 01: Part 2 - Setup and Launch Spring Boot Application with Maven and Eclipse 00:10:49
    • Step 02: Creating your first RestController 00:12:00
    • Step 02: Theory: Basics of Spring Framework 00:08:41
    • Step 03: Understanding Spring Boot Magic: Spring Boot Starter Web 00:12:19
    • Step 04: Understanding Spring Boot Magic: Spring Boot Starter Parent 00:07:21
    • Step 05: Spring Boot vs Spring 00:10:33
    • Step 06: Create all Services for Survey and Questions 00:08:07
    • Step 07: Creating REST Service with @GetMapping and @PathVariable 00:13:26
    • Step 07: Theory - Message Converters and Introduction to REST 00:07:51
    • Step 08: Second REST Service to retrieve a specific question 00:07:02
    • Step 09: Spring Boot Developer Tools and LiveReload : Develop faster! 00:05:56
    • Step 10: Create a Service to add a new question to survey:@PostMapping, Postman 00:16:42
    • Step 11: Understand Content Negotiation. Deliver XML Responses 00:06:40
    • Step 12: Spring Initializr: Create Spring Boot Projects on the fly! 00:06:13
    • Step 13: Spring Boot Actuator: Monitor your Spring Boot applications! 00:11:34
    • Step 14: Understanding Embeded servlet containers: Switch to Jetty or Undertow 00:04:51
    • Step 15: Adding Dynamic Configuration to your application: YAML and More.. 00:13:06
    • Step 16: Basics of Profiles 00:08:30
    • Step 17: Advanced Application Configuration - Type Safe Configuration Properties 00:11:53
    • Step 18: Spring Boot Starter: Spring Data JPA with CommandLineRunner 00:13:06
    • Step 18: Spring Boot Starter: Spring Data JPA with CommandLineRunner Part 2 00:09:59
    • Step 19: In Memory Database H2 Console and add a new JPA Repository Method 00:07:41
    • Step 20: Spring Boot Starter: Introduction to Spring Data Rest 00:09:52
    • Step 21: Spring Boot Integration Test 00:10:38
    • Step 21: Spring Boot Integration Test Part 2 00:16:49
    • Step 22: Adding Integration Test for POST Request 00:07:54
    • Step 23: Small Refactoring to organize ourselves 00:03:51
    • Step 24: Writing Unit Tests with Spring Boot and Mockito 00:07:57
    • Step 24: Writing Unit Tests with Spring Boot and Mockito Part 2 00:09:10
    • Step 25: Writing Unit test for create Todo 00:06:14
    • Step 26: Securing our services with Basic Authentication using Spring Security 00:05:15
    • Step 27: Configure Spring Security user roles for survey and other services 00:11:34
    • Step 27: Configure Spring Security user roles - Part 2 00:09:04
    • Step 28: A Deep Dive into Spring Boot Auto Configuration 00:10:52
  6. Chapter 6 : Introduction to JPA with Spring Boot in 10 Steps
    • Step 0: JPA with Spring Boot in 10 Steps - Section Introduction 00:00:59
    • Step 1: Object Relational Impedence Mismatch 00:04:43
    • Step 2: World before JPA - JDBC, Spring JDBC and myBatis 00:07:00
    • Step 3: Introduction to JPA 00:05:12
    • Step 4: Creating a JPA Project using Spring Initializr 00:06:02
    • Step 5: Defining a JPA Entity – User 00:04:41
    • Step 6: Defining a Service to manage the Entity - UserService and EntityManager 00:04:53
    • Step 7: Using a Command Line Runner to save the User to database 00:04:38
    • Step 8: Magic of Spring Boot and In Memory Database H2 00:08:37
    • Step 9: Introduction to Spring Data JPA 00:05:15
    • Step 10: More JPA Repository: findById and findAll 00:02:54
  7. Chapter 7 : Connecting Web Application with JPA
    • Section Introduction - Connecting Web Application with JPA 00:01:13
    • Step 26: Adding Dependencies for JPA and H2 00:06:03
    • Step 27: Configuring H2 Console 00:04:35
    • Step 28: Create Todo Entity and JPA Repository 00:06:28
    • Step 29: Insert Todo using JPA Repository 00:04:07
    • Step 30: Update, Delete and Retrieve Todos using JPA Repository 00:05:39
    • Step 31: Data initialization with data.sql 00:03:08
    • Step 32: Connecting JPA to other databases 00:04:49
    • Step 33: Upgrading to Spring Boot 2 and Spring 5 00:06:14
  8. Chapter 8 : Congratulations
    • Congratulations! 00:00:51
  9. Chapter 9 : Appendix - First 10 Steps in Spring
    • Section Introduction - First 10 Steps in Spring 00:00:51
    • Step 1: Setting up a Spring Project using http://start.spring.io 00:04:49
    • Step 2: Understanding Tight Coupling using the Binary Search Algorithm Example 00:08:27
    • Step 3: Making the Binary Search Algorithm Example Loosely Coupled 00:05:22
    • Step 4: Using Spring to Manage Dependencies - @Component, @Autowired 00:11:31
    • Step 5: What is happening in the background? 00:06:28
    • Step 6: Dynamic auto wiring and Troubleshooting - @Primary 00:04:47
    • Step 7: Constructor and Setter Injection 00:04:56
    • Step 8: Spring Modules 00:05:05
    • Step 9: Spring Projects 00:04:46
    • Step 10: Why is Spring Popular? 00:04:15
  10. Show and hide more

    Oreilly - Learn Spring Boot in 100 Steps - Beginner to Expert


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss