Oreilly - Building Spring Boot Apps with Kotlin - 10000DIHV201803
Oreilly - Building Spring Boot Apps with Kotlin
by Matt Greencroft | Released April 2019 | ISBN: None


Interest in the Kotlin programming language has been soaring. Kotlin's effortless syntax and embrace of multiple programming styles are now fully supported in Spring Boot! In the video course Kotlin with Spring, seasoned IT trainer Matt Greencroft builds on your Java and Spring knowledge as you level up with Kotlin. This all-encompassing interactive journey gets you coding as you learn with lots of practical exercises and a cool hands-on real world case study: a theater booking system! You'll be amazed at how much more productive you are when you combine the power of Spring with the flexibility and robustness of Kotlin! about the subject Kotlin is a modern programming language for the JVM developed by Jetbrains, the makers of the IntelliJ IDE. Besides Java, Kotlin is the only officially supported language for Android development. Fully interoperable with Java, Kotlin boasts a number of enhancements Java just doesn't have. Say goodbye to repetitive boilerplate and null pointer exceptions and write code that's expressive, understandable, and safe! What's more, Kotlin allows for immutable and non-nullable variables, and you'll be writing less code with fewer classes. Compared to other JVM languages, Kotlin is an easy transition for Java developers. And a smart one! about the video Building Spring Boot Applications with the Kotlin Programming Language teaches you to write clean, concise, easily maintainable Kotlin code using Spring Boot. Watch and learn as Kotlin expert Matt Greencroft explains Kotlin syntax and its automatic benefits. You'll explore Kotlin features such as immutable variables, null-safety operators, data classes, templates, and top level functions. Then, you'll discover the design approaches that make the most of the Spring and Kotlin combination, including using Spring Boot's Hibernate framework and the Thymeleaf template engine. You'll dive into functional programming and reflection, and you'll reinforce your learning with lots of helpful examples. Throughout the course, you'll incorporate your new skills by building a real world theater booking system! With this value-rich visual learning experience, you'll be more productive and—happier!—as you confidently create amazing, robust applications with Kotlin! Inside: Functional programming with collections Creating immutable and non-nullable variables How Kotlin helps you avoid null pointer exceptions Exception handling in Kotlin, including custom exceptions Using Spring Boot with Kotlin, including Hibernate and Thymeleaf Converting existing Java apps to Kotlin Perfect for Java programmers with some experience with Spring Boot. No Kotlin experience is required. Matt Greencroft has been working as a professional IT trainer since 2013. His specialties are JavaEE, Android, Hadoop and NoSQL. Previously, he developed applications and websites for his clients in the business and finance sectors, many of which he still maintains. Show and hide more
  1. INTRODUCTION
    • Introduction, and install Hadoop on your desktop! 00:01:45
    • What is Kotlin? 00:05:46
    • Installing IntelliJ 00:03:12
    • Configuring IntelliJ 00:07:07
  2. WORKING WITH STRINGS
    • Creating a new project in Kotlin 00:05:45
    • Variable declaration syntax 00:04:32
    • Inferring variable types and println 00:04:17
    • Using String templates 00:04:40
    • Multiple line strings 00:06:54
  3. OTHER VARIABLE TYPES
    • Using the Double and determining class types 00:04:25
    • The Int data type 00:02:11
    • Other data types 00:06:18
    • Casting in Java 00:05:00
    • Casting in Kotlin 00:06:35
    • Chapter review 00:01:18
  4. NULLABLE VARIABLES
    • Creating variables that can contain a null value 00:04:43
    • Methods that work with nullable parameters 00:02:19
    • The null-safe and non-null asserted operators 00:04:16
    • The nothing object type 00:03:09
  5. FUNCTIONS
    • The function syntax and the Unit object 00:04:01
    • Creating and calling top level functions 00:04:38
    • Single expression functions 00:03:14
    • Using named parameters when calling functions 00:05:40
    • Other aspects of functions in Kotlin 00:06:46
  6. CLASSES
    • Project structure and packages 00:02:05
    • The class declaration and class level attributes 00:03:31
    • Instantiating a class, and accessing the class attributes 00:02:14
    • Creating a simple constructor 00:05:07
    • Secondary constructors 00:05:21
    • Alternative class design 00:05:03
    • Overriding getters and setters 00:07:21
    • Functions within a class 00:02:58
    • Static functions 00:03:29
    • Data classes 00:07:32
  7. PRACTICAL EXERCISE 1
    • Explaining the challenge 00:04:33
    • Solution walkthrough 00:09:51
  8. THE IF EXPRESSION AND OBJECT EQUALITY
    • The If keyword as an expression 00:04:49
    • Using if to do a null-safe check 00:07:07
    • The let function 00:09:37
    • Object equality and the when expression 00:05:32
  9. RANGES AND LOOPING
    • The While loop 00:01:25
    • Using for to loop through a collection 00:05:26
    • Destructuring with a for loop 00:03:01
    • Looping with the Range object 00:06:14
  10. COLLECTIONS
    • Mutable collections with immutable variables 00:01:29
    • Immutable lists 00:04:00
    • Mutable lists 00:01:30
    • Maps and sets 00:01:45
    • Working with Arrays 00:04:16
  11. PRACTICAL EXERCISE 2
    • Explaining the challenge 00:07:10
    • Solution walkthrough 00:08:46
  12. EXCEPTIONS AND TRY CATCH BLOCKS
    • Exceptions are unchecked 00:04:55
    • Throwing exceptions 00:04:45
    • Try as an expression 00:02:24
    • Use as an expression (try with resources) 00:02:58
  13. TESTING
    • Using Junit with Kotlin 00:05:02
    • The Kotlin test assertions 00:05:09
    • Testing for exceptions 00:04:20
  14. INTERFACES AND EXTENDING CLASSES
    • Creating and implementing Interfaces 00:04:49
    • Class inheritance 00:05:12
    • Creating custom exceptions 00:02:36
    • Extension functions 00:04:38
  15. JAVA INTEROPERABILITY
    • Instantiating classes and providing values to non-nullable variables 00:06:09
    • Using data classes 00:01:21
    • Using immutable lists 00:02:18
    • Exception handling 00:03:18
    • Using static functions 00:02:13
    • Importing a Kotlin jar into a Java project 00:04:12
  16. GETTING STARTED WITH SPRING BOOT
    • Creating a project with the Spring Initializer 00:04:30
    • A hello world controller 00:03:34
    • Auto restarting an application 00:04:18
    • Overview of the case study we’ll be working on 00:01:42
    • Creating views and backing beans 00:05:16
    • Connecting views to controller functions 00:02:11
    • Adding services 00:04:13
    • Posting data to a controller 00:05:04
    • Dependency injection 00:06:38
    • Revisiting backing beans 00:03:33
  17. FUNCTIONAL PROGRAMMING
    • Functional programming overview 00:04:57
    • Methods that take function parameters - the Java way 00:05:17
    • Methods that take function parameters - the Kotlin way 00:05:19
    • Functional programming with lists 00:06:49
    • Filter and flatmap 00:03:46
    • Reduce and Fold 00:06:34
    • Working with Maps 00:03:14
  18. GETTING STARTED WITH HIBERNATE
    • Adding the Hibernate dependencies 00:05:01
    • The challenge of creating entities 00:07:40
    • Persisting data to a database 00:05:11
  19. PRACTICAL EXERCISE 3
    • Step 1 - explaining the challenge 00:04:07
    • Solution Walkthrough 00:02:33
    • Mappings between entities 00:07:34
    • Upgrading the view 00:11:25
    • Step 2 - explaining the challenge 00:02:26
    • Solution walkthrough 00:09:04
    • Step 3 - explaining the challenge 00:03:21
    • Solution walkthrough 00:04:21
  20. REFLECTION
    • The concept of reflection 00:07:21
    • Inspecting properties and functions 00:03:48
    • A practical use for reflection 00:09:43
    • Thank you and goodbye 00:00:39
  21. Show and hide more

    Oreilly - Building Spring Boot Apps with Kotlin

    10000DIHV201803.building.spring.boot.OR.part1.rar

    10000DIHV201803.building.spring.boot.OR.part2.rar


 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