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🤓
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.
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.
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?
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
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
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!
@@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!
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!
I'm Java developer learning kotlin for android development. Your course is very hepful for my learning. Thank you very much.
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🤓
Same to me, I understood every section parts what he said, it's really an amazing course on youtube.
You are quickly becoming one of my favorite RUclips channels. Really good stuff!
same here :)
I'm learning/refreshing Spring and Kotlin. This was an invaluable video. Thank you for the great video and all you hard work.
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.
Can you make a course for microservices using spring boot?
Pleaseeee 🙏🏻🙏🏻🙏🏻
Please.
wow how you have clear voice and it feels like magnet
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.
Best teacher ever award goes to Aaron ❣
One of the best kotlin course, Thanks a lot
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?
Thanks Brother ❤❤...Please bring this type of Course for Microservices architecture tutorial in java also...Please brother...❤❤
This is an immensely awesome tutorial!
can you make a java course for people with already enough programming skills from javascript or python
there is a error on 14:15, you put author.123 instead of author.id
where is the premium version and how can i buy it?
Nice
Legend,
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
I need full real world work shop please make it.
Would be kind to make a real webapp video, but with java this time.
133rd...Thanks mate.
❤❤
What If 2 Author works on One Book?
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
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!
@@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!