How to build a REAL Webapp with Kotlin & Spring Boot

Поделиться
HTML-код
  • Опубликовано: 17 ноя 2024

Комментарии • 32

  • @CharlyAlemania
    @CharlyAlemania 2 месяца назад +2

    Thanks !! I am starting my first job as a dev in a month and I'll be using Kotling with Spring Boot in the backend, this really helps!

  • @follysitoucarlogbossou8778
    @follysitoucarlogbossou8778 4 месяца назад +1

    I'm Java developer learning kotlin for android development. Your course is very hepful for my learning. Thank you very much.

  • @Savkaev
    @Savkaev Месяц назад +1

    English is my second language and I can understand everything you say absolutely clear. Thanks for that bro! Clean articulation means a lot, although it may be underestimated by some🤓

    • @yishstudio8393
      @yishstudio8393 28 дней назад

      Same to me, I understood every section parts what he said, it's really an amazing course on youtube.

  • @Hirti6
    @Hirti6 2 месяца назад +2

    You are quickly becoming one of my favorite RUclips channels. Really good stuff!

  • @pazzuto
    @pazzuto 2 месяца назад

    I'm learning/refreshing Spring and Kotlin. This was an invaluable video. Thank you for the great video and all you hard work.

  • @ahmedel-yacoubi9417
    @ahmedel-yacoubi9417 2 месяца назад

    Thank you so much for your incredible course on Testing in Spring Boot & Kotlin! Your expertise and passion for teaching have been truly inspiring. I have gained so much knowledge and I am grateful for the opportunity to learn from you.
    Your dedication to creating high-quality content and your ability to break down complex concepts into understandable explanations have been a great help in my learning journey. I am confident that your influence will continue to inspire and guide me in my career.
    Thank you again for your time and for sharing your knowledge with the world. I am looking forward to your future courses and I am excited to continue learning and growing as a software developer.

  • @niravparekh1425
    @niravparekh1425 4 месяца назад +16

    Can you make a course for microservices using spring boot?

  • @adil_ayoub_
    @adil_ayoub_ 4 месяца назад

    wow how you have clear voice and it feels like magnet

  • @AymanAlSagher
    @AymanAlSagher 4 месяца назад

    Hey Devtiro, In getters and setters part, your example ( 00:45:37 ) is identified with "val" and you mentioned it before that val doesn't have any setters. Just wanted to point this out because you're courses are very very professional and to the point actually :). I will keep watching till the end for sure.
    Thank you so much for this amazing tutorial.

  • @ayushjain7023
    @ayushjain7023 3 месяца назад

    Best teacher ever award goes to Aaron ❣

  • @rohankaushik8960
    @rohankaushik8960 3 месяца назад

    One of the best kotlin course, Thanks a lot

  • @mukyt
    @mukyt 4 месяца назад +2

    Hey bro I don't know how to thank you. Helping many people like us. Thanks a lot. I preferred your java + maven. You are teaching Java + kotlin. Which one to prefer because I'm good in java +maven?

  • @UditNagar-of5su
    @UditNagar-of5su 27 дней назад

    Thanks Brother ❤❤...Please bring this type of Course for Microservices architecture tutorial in java also...Please brother...❤❤

  • @AntonArhipov
    @AntonArhipov 2 месяца назад

    This is an immensely awesome tutorial!

  • @ronemchowry180
    @ronemchowry180 3 месяца назад

    can you make a java course for people with already enough programming skills from javascript or python

  • @guilhermeferreira4901
    @guilhermeferreira4901 Месяц назад

    there is a error on 14:15, you put author.123 instead of author.id

  • @ronemchowry180
    @ronemchowry180 3 месяца назад

    where is the premium version and how can i buy it?

  • @TrungPham-ol7is
    @TrungPham-ol7is 4 месяца назад

    Nice

  • @MA-rf6sg
    @MA-rf6sg 4 месяца назад

    Legend,

  • @dxvfdfx
    @dxvfdfx 2 месяца назад

    I really need a kotlin tutorial on using Spring Authorization Server with the PKCE flow, including how to handle login and logout, I will definitely buy this course

  • @koomsup
    @koomsup 3 месяца назад

    I need full real world work shop please make it.

  • @Stl71
    @Stl71 2 месяца назад

    Would be kind to make a real webapp video, but with java this time.

  • @jopadjr
    @jopadjr 3 месяца назад

    133rd...Thanks mate.

  • @_abshar
    @_abshar 4 месяца назад

    ❤❤

  • @yngsheikh
    @yngsheikh Месяц назад

    What If 2 Author works on One Book?

  • @domagojstankovic407
    @domagojstankovic407 Месяц назад

    Hi Devtiro, thank you for this tutorial! I got stuck at 1:53:20, I get a 404 error and I am not sure what's the best way to debug it. Could you give me some suggestions?
    I've set logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG and I am getting this
    POST "/v1/authors", parameters={}
    Completed 404 NOT_FOUND
    "ERROR" dispatch for POST "/error", parameters={}
    Exiting from "ERROR" dispatch, status 404

    • @devtiro
      @devtiro  Месяц назад

      Hrmm, could be a missing @PostMapping annotation, an incorrect path value, or perhaps the app hasn't restarted correctly... It's hard to say with a tad more info. I'd recommend posting in the "Ask the Community" space in the Devtiro Community, pasting in your class. Far easier to debug that way 😁 Hopefully this helps!

    • @domagojstankovic407
      @domagojstankovic407 Месяц назад

      @@devtiro where can I find Devtiro community?
      I followed the instructions carefully, docker compose is up, db and adminer are running, frontend is running and the app has been restarted.
      This is the class
      @RestController
      class AuthorsController(private val authorService: AuthorService) {
      @PostMapping(path = ["/v1/authors"])
      fun createAuthor(@RequestBody authorDto: AuthorDto): AuthorDto {
      return authorService.save(
      authorDto.toAuthorEntity()
      ).toAuthorDto()
      }
      }
      Thanks in advance, I appreciate it!