Deploy your first REST API with Kotlin and Kobweb for Free - Easy Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ก.พ. 2025
  • 🏆 My Online Courses
    stevdza-san.com
    ☕ Let's get a coffee. You're paying! :)
    ko-fi.com/stev...
    💻 Github
    github.com/ste...
    📸 Instagram
    / stevdza_san
    Project Source Code: github.com/ste...

ความคิดเห็น • 47

  • @nastenkaoo
    @nastenkaoo ปีที่แล้ว +6

    you deserve much more than you get now

  • @mshiddiqf8236
    @mshiddiqf8236 ปีที่แล้ว +4

    Sir pls make some tutorial to consume API in Kobweb for frontend web.

    • @StevdzaSan
      @StevdzaSan  ปีที่แล้ว +3

      Thanks for the suggestion, I'll definitely work on that one.

    • @reycataal8033
      @reycataal8033 2 หลายเดือนก่อน

      Good suggestion. I tried googling, cant find any.

  • @kaushikkaransingh3240
    @kaushikkaransingh3240 ปีที่แล้ว

    Keep making this awesome tutorials 💫

  • @dinarastepina8707
    @dinarastepina8707 ปีที่แล้ว +1

    you’re so underrated!

  • @PrashantSingh-d97
    @PrashantSingh-d97 ปีที่แล้ว +3

    Hi, @StevdzaSan your videos are so good and easy to understand. It helps me a lot to learn and seek the best of the best.
    Can you create a video on nested lazy Columns/Rows or share some ideas? I will be grateful.

  • @OgabekDev
    @OgabekDev ปีที่แล้ว +1

    You are doing great. One more thing, how to request body while sending more information to api

  • @ataytaygaraev4298
    @ataytaygaraev4298 ปีที่แล้ว +1

    There is also Spring Boot with kotlin. This framework much more popular and has large support community

  • @azlanj
    @azlanj ปีที่แล้ว

    awesome content, thanks and keep uploading stuff like this

  • @chax255
    @chax255 6 หลายเดือนก่อน

    This was fun to watch.. Maybe because I love kt

  • @LeonardoMorales08
    @LeonardoMorales08 ปีที่แล้ว

    Awesome video! Thanks for sharing this content.

  • @gvharish9894
    @gvharish9894 ปีที่แล้ว

    can anyone share any article or video to connect database in kobweb?

  • @simba_go
    @simba_go 8 หลายเดือนก่อน

    Hi, how to deploy manually to VPS server?.. using ssh.. and how to build app too, its a jar file?..
    thanks

  • @brayn7504
    @brayn7504 ปีที่แล้ว +1

    This is actually a really great tutorial and didn't know we can have free webserver that serves our API. Here you are hardcoding the JSON response, is it possible to access it from a database and create data using, for example, createUser and then getPerson? Does Render has some sort of data storage capabilities too?

    • @StevdzaSan
      @StevdzaSan  ปีที่แล้ว +4

      We could use a mongodb, I'll do a full course and even a video tutorial on that topic.

    • @frankyjunior6005
      @frankyjunior6005 ปีที่แล้ว

      @@StevdzaSan please make a course with postgres and jwt instead of using mongo db. Thank you

  • @sohailabbas007
    @sohailabbas007 ปีที่แล้ว +1

    Awesome content, make more videos on ktor and kob-web, topics like websockets and stuff, would really be helpful,
    Also i would buy a course dedicated to ktor, backend development using kotlin, would be really helpful.

    • @dinarastepina8707
      @dinarastepina8707 ปีที่แล้ว

      this!

    • @isaacmutahi4158
      @isaacmutahi4158 ปีที่แล้ว

      Also now that we have projects built in ktor. Show us how we can add kobweb to our ktor projects and create frontends on top of oyr existing servera in intelij. Thanls

  • @harshv.tewari6869
    @harshv.tewari6869 ปีที่แล้ว +1

    What's the name of the theme ? and where i can find it

    • @StevdzaSan
      @StevdzaSan  ปีที่แล้ว

      That's the new UI - Beta UI of Intelij IDEA.

  • @tariqhussain4268
    @tariqhussain4268 ปีที่แล้ว

    This is good and easy to understand tutorial. Can you also make a tutorial for hosting Ktor REST apis.

  • @selebdroid6423
    @selebdroid6423 ปีที่แล้ว

    Cool, thank you

  • @mustafatoktas
    @mustafatoktas ปีที่แล้ว

    @StevdzaSan Hello. I have Cpanel hosting service. How can I run my own API that I wrote on my Cpanel hosting service?

  • @isaacmutahi4158
    @isaacmutahi4158 ปีที่แล้ว

    I have bought courses bro you and they are always well explained. The boruto app. Kindly show us how we can make webpages such us landingpages on top of existing ktor projects using kobweb

  • @diegofarias1987
    @diegofarias1987 ปีที่แล้ว

    Thanks for sharing. Where did you get the code for the Dockerfile?

    • @StevdzaSan
      @StevdzaSan  ปีที่แล้ว +1

      From the Kobweb owner: github.com/bitspittle/kobweb-todo-on-render/blob/main/Dockerfile

  • @Zeeshan-Syed
    @Zeeshan-Syed ปีที่แล้ว

    Isn't there any feature like ContentNegotiation as in Ktor instead of converting object to json manually?

    • @StevdzaSan
      @StevdzaSan  ปีที่แล้ว

      You could create a generic function that will do that for your.

    • @Bitspittle
      @Bitspittle ปีที่แล้ว

      For a specific example of what Stevdza-san was suggesting, you can add the following code to your Kobweb server project:
      ```
      inline fun Response.setBody(bodyObject: T) {
      setBodyText(Json.encodeToString(bodyObject))
      }
      ```
      With that, you could change his example code to:
      ```
      context.res.setBody(ApiResponse.Success(...))
      ```

  • @frankyjunior6005
    @frankyjunior6005 ปีที่แล้ว

    What is different with ktor?

    • @StevdzaSan
      @StevdzaSan  ปีที่แล้ว

      This one is built on top of the Ktor, and it is used along with Kobweb to connect it to the frontend as well.

    • @frankyjunior6005
      @frankyjunior6005 ปีที่แล้ว

      @@StevdzaSan nice will try it, another question is the syntax is sam between ktor and kobweb api?

  • @vikashtiwari8360
    @vikashtiwari8360 ปีที่แล้ว +1

    sir please update your modern food recipes app on udemy ...love from India

    • @StevdzaSan
      @StevdzaSan  ปีที่แล้ว +2

      I regularly post updates in the last section of the course. Feel free to send me a message there and describe the issue you're encountering.

  • @vikashtiwari8360
    @vikashtiwari8360 ปีที่แล้ว

    sir please make a course on udemy for beginners in android development

  • @AymanShaabanELsayedDEVELOPER
    @AymanShaabanELsayedDEVELOPER ปีที่แล้ว

    Can you make a second video that explains how to connect this api with database , send , update and get data from tables ,please ❤❤

  • @Vl-TV
    @Vl-TV ปีที่แล้ว

    Не понял в чем суть, оно с бд или нет?!)

    • @shocknorm
      @shocknorm ปีที่แล้ว +1

      Видос про апи, не про бд)))

  • @xpynim
    @xpynim 8 หลายเดือนก่อน

    i subs u ❤