22 minutes crisp video and creating multi-module spring-boot project using IntelliJ becomes a child play. Excellent. Thank you.
@mackkek76034 жыл бұрын
I just wanna say that you did this tutorial excellent, well explained and straight to the point. Too bad that it't not that many tutorials out there like this one. If I only would have found this 14 hours ago I would have saved a lot of time. Thanks for posting this!
@CodeForgeYT4 жыл бұрын
Hey! Thanks for the very positivie feedback. It is really nice to hear things like this!
@moondrya Жыл бұрын
Saved a lot of time to create multi-module spring boot project using IntelliJ. Thank you Sir! 🫶
@satyarajGovindaDas8 ай бұрын
Thank you very much. This is a great step-step video, you have explained clearly and all you have showed in this video is exactly what I was searching for.
@boikimphore4707 Жыл бұрын
Great explanation with detailed examples, multi-module projects have always been tricky to me, especially with managing dependencies, until now. 😎
@kishorprakash98373 жыл бұрын
Really great video. You fucking nailed it in 22 mins. Please always keep your videos simple and quick like this one. I love it.
@CodeForgeYT3 жыл бұрын
Thank you so much!
@ahmadfaiaz3427 Жыл бұрын
It was really awesome, very simple example, really well explained. just loved it. Thanks so much. And to answer your question, instead of restarting IntelliJ you can refresh maven after you run "mvn clean install" in root dir.
@tugnguyen4 жыл бұрын
Thank you mate, you actually go straight to the point and explain it well
@CodeForgeYT4 жыл бұрын
Thanks! Happy you like it!
@minyon96218 ай бұрын
Thanks for the solution! Saved me a lot of time!
@sourabhshete22432 жыл бұрын
The way you're just closing the built project folder in intellij and then opening it again in new window, so instead of that you can simply add it as maven project without closing the intellij project window. Just right click on the pom.xml and from the drop down menu click on the option - "Add as a maven project", simple.
@CodeForgeYT2 жыл бұрын
Yeah I have learned about it some time later. Thanks!
@Paper-Folded2 жыл бұрын
Thanks for your instruction ! You are life saver ~
@CodeForgeYT2 жыл бұрын
Happy to help
@EnggAdda-e3l10 ай бұрын
what if both the child applications have there own REST APIS , how will be managing both of them at one go and is there any way we can generate the jar of the parent app so that we can deploy them in some cloud?
@xMol4unx3 жыл бұрын
Thanks for the video. Can someone explain me - wich application.properties file will be used?
@nathansnow3 жыл бұрын
By default the application.properties file in the root project will always get priority. For example if you have a property "app.test" in your root properties file AND in a child module, the value from the root file will be returned. However you can have module specific settings and while there is no naming clash from the root file your module settings can be accessed as well
@ttc7444 жыл бұрын
thanks good video. Perhaps add info on build tag
@CodeForgeYT4 жыл бұрын
Happy you like it! :)
@razzagzade9033 жыл бұрын
If we had a chance to meet you live, I would kiss you on the forehead)))) Just spectacular
@fe25074 жыл бұрын
How to create it without a main class, and then use this multi-module in another spring boot project with a main class? Thanks CodeForgeYT!
@CodeForgeYT4 жыл бұрын
Well, you want to remove the main class, because you want a library like project. Then you want to rebuild it and it should be installed in your local maven repo. When its done you want to include sub-modules in your runnable project as the dependencies.
@fe25074 жыл бұрын
@@CodeForgeYT Good, thanks!
@CodeForgeYT4 жыл бұрын
@@fe2507 No problem!
@MohammadRezaFalahati-e9m10 ай бұрын
that was very good
@AbdoulKarimDiallo-c4k9 ай бұрын
Thank you!
@lovemeplz044 жыл бұрын
Thanks master
@CodeForgeYT4 жыл бұрын
You are welcome ! : D
@anilrajput19846 ай бұрын
thanks
@friendsofmuhammad11 ай бұрын
Make it full stack please
@dainier824 жыл бұрын
Good video, code please !!
@CodeForgeYT4 жыл бұрын
Thanks for feedbac. I have uploaded code to github. You can find link in video description. Keep coding!