huge thanks brother i'm trying to learn spring boot and this video helped me a lot ! Props to leaving the source code in the description it was really helpful, some youtubers make people pay for source code and you didn't thank u so much.
You're right. I missed to add this part. Good catch. The video exists. Just slipped through while editing. The source code is provided and is easy to understand. Or you can take the course for free on my website here: www.getarrays.io/. There all the sections are present. Unfortunately, for as much as I would like to fix it, I can't edit the video on uploaded.
Yes this is what needed Spring boot + react js /next js/ + mongodb + docker . Please one micro SaaS web application with these tech stack.. There isn't a single video on TH-cam, you will be the first one
Can you help me? In minute 36:00 when i start the programm there is an error which says: Parameter 0 of constructor in io.getarrays.contactapi.service.ContactService required a bean of type 'io.getarrays.contactapi.repo.ContactRepo' that could not be found. what should i do?
i have seen the code where the image is saved in DB as @Lob or as array byte i.e. Byte[] imageData. what are the diffrences between tthis and then one you are doing?
Db read write operation is costly that file, so we should avoid writing files in db, images can be of more than few kbs and reading those info from db will take more time and this will hamper the performance of application.
he skipped it on accident but the source code is in the description in the resource package where the rest of the main code is. Its basically just exposing the functions we already made to HTTP, so the actual REST API portion of it.
@@GetArraysalso if you could make the 100 dollar course an udemy course I'm sure you'd be making much more... there's tons of people who don't mind paying 15 euros for your course. and I'd be happy to purchase any 10h+ springboot+angular Udemy courses from you, you're really a very capable teacher
@@GetArrays This was dope and helped my create my first backend without google storage. Do you have anything for authentication with Google or Facebook?
For any dashboard application we need authentication and shouldn't be ranked in Google, so seo is not required. But for the sake of knowledge we are building frontend with react that will face client side without authentication there are few ways to improve seo in react.
Please create a video on joins in JPA very mix content available on internet, didn't found any simple way. for example: @OneToMany with non primary key like in this video we are using string ids. if I have another field name "contact_type" in contacts column and ContactType table to get data in contacts list with contact_type_name, waiting for the video
Thank you very much for creating this tutorial. Could you or anyone in the comments section tell me how to generate those default comments above the class declaration. It is visible in the tutorial that whenever a new class is created, Intellij automatically creating java doc for it.
Hello Bro, I do love to take your course on Full Stack java on your website but as a student from Africa, I can't afford the 100$. Is there a possibility of getting a discount to enroll for the course? If possible, please do let me know. Thanks.
Hey my dawg, I come from a MERN PERN and NEXT.js background bruh, please make a video where you create a crud app (springboot and react) and deploy it for free using render or something. I really dont know how to do it with springboot
Good Morning sir I have this error, can you please to clear this error: Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled. 2023-12-20T09:59:31.914Z ERROR 15588 --- [ main] o.s.boot.SpringApplication : Application run failed
35 minutes in and this tutorial just drives into a ditch as the back end piece won't run if you are just following along. The code that was skipped over can be fetched from the referenced github, but there's no mention of configuring/starting the database either... Tossing up a YML file for the PostgreSQL in github with a comment at the top for how to run it for those that don't know would address that. Probably salvage-able if this author wants.... I'd strongly recommend adding a README to your github for the backend, note what files were missing and need to be copied, put up a YAML file that can be ran via docker-compose and reference those (change application.yml to refer to locahost too). The remaining 2.5 hours are kind of wasted if this front part just crashes and burns like it does currently.
You know what happens with JavaScript libraries. This course is a bit old and these versions change all the time. The README file idea is nice though. But hey nice subtle and clever use of words just to insult me and the work that I put together and give it for free. That’s just the pattern of the Internet, isn’t it? Anyways, thanks for the feedback.
This is basically a bug report, not an insult. I've pointed out the problem and suggested remedies. I'll make you a deal though, if you pin a comment with the workaround, I'll re-test and amend my original comment with the experience.
Very less project in spring boot on youtube please make more project using Spring boot my sql and react ❤
huge thanks brother i'm trying to learn spring boot and this video helped me a lot ! Props to leaving the source code in the description it was really helpful, some youtubers make people pay for source code and you didn't thank u so much.
this his only free one lol
@@andrean40 😭😭😭😭😭😭😭😭☹
That was perfect. Learned a lot. Thanks
I have waited for this video for such a long time!
You course are very clear and easy to follow. Thank you very much Junior !
The video jumps from Service to 33:33 - Data Source Configuration code. Looks like Resource/Controller code is missing
You're right. I missed to add this part. Good catch. The video exists. Just slipped through while editing. The source code is provided and is easy to understand. Or you can take the course for free on my website here: www.getarrays.io/. There all the sections are present. Unfortunately, for as much as I would like to fix it, I can't edit the video on uploaded.
@@GetArrays I can understand. Just found that and thought of informing you. There's nothing but simple mappings with.
i checked ur website and unfortunately i didn't found this part @@GetArrays
Your comment saved me, I was completely lost because this is my first spring boot/java video. So thank you.
this video is friendly for springboot starter like me, everything is clear and well explained
thanks,you really good developer
Amazing tutorial, can we have more examples with spring sevurity 6 and React js
For my own ref:
1:30:10 Start to connect backend, before that have multi pages also
sorry am I missing the docker part? do you have videos on how to connect to it?
im getting hibernate errors loading up the application at 35:55 please help :(
amazing bro.
Keep it up !!!
Yes this is what needed
Spring boot + react js /next js/ + mongodb + docker .
Please one micro SaaS web application with these tech stack..
There isn't a single video on TH-cam, you will be the first one
how to set up postgres to connect to the contact API?
38:00 I just something skipped but when ContactResource is appeared? xD
lol I know. I missed some lecture and I can't update the video here.
what logic did you use for delete button
my spring boot cannot run.. due to some persistence error? Is connecting to your test database failing?
Can you help me? In minute 36:00 when i start the programm there is an error which says: Parameter 0 of constructor in io.getarrays.contactapi.service.ContactService required a bean of type 'io.getarrays.contactapi.repo.ContactRepo' that could not be found.
what should i do?
Check your annotation in the service. That is usually the problem.
Wonderful lectures as always. Thanks for this.
Also what theme do you use in your Intellij Idea? Its appealing.
Dracula
i have seen the code where the image is saved in DB as @Lob or as array byte i.e. Byte[] imageData. what are the diffrences between tthis and then one you are doing?
Db read write operation is costly that file, so we should avoid writing files in db, images can be of more than few kbs and reading those info from db will take more time and this will hamper the performance of application.
where can I find controller part??
he skipped it on accident but the source code is in the description in the resource package where the rest of the main code is. Its basically just exposing the functions we already made to HTTP, so the actual REST API portion of it.
anyone know how to deploy this project?
please make more reactjs with springboot!
Big course coming my friend. Recording the videos right now. You will not be disappointed.
thank you so much man@@GetArrays
I heard somewhere you were working on a ticket management application brother?
Coming soon
Wait x2
@@GetArraysbro is it angular+springboot?
@@GetArraysalso if you could make the 100 dollar course an udemy course I'm sure you'd be making much more... there's tons of people who don't mind paying 15 euros for your course. and I'd be happy to purchase any 10h+ springboot+angular Udemy courses from you, you're really a very capable teacher
@@GetArraysanyway thanks for sharing your expertise and knowledge with us
Keep going Sir
One time for Haiti...what up Zoe?🙌🏿
🇭🇹💪🏾
@@GetArrays This was dope and helped my create my first backend without google storage. Do you have anything for authentication with Google or Facebook?
@@GetArrays How do I set it up for the live environment and not local. You got anything for that?
How do you deal with SEO using React? This stack is perfect for internal systems, dashboards, etc.
For any dashboard application we need authentication and shouldn't be ranked in Google, so seo is not required. But for the sake of knowledge we are building frontend with react that will face client side without authentication there are few ways to improve seo in react.
Please create a video on joins in JPA very mix content available on internet, didn't found any simple way. for example: @OneToMany with non primary key like in this video we are using string ids. if I have another field name "contact_type" in contacts column and ContactType table to get data in contacts list with contact_type_name, waiting for the video
my man is literally saving my uni cred
lol
Thank you very much for creating this tutorial.
Could you or anyone in the comments section tell me how to generate those default comments above the class declaration. It is visible in the tutorial that whenever a new class is created, Intellij automatically creating java doc for it.
Settings > Editor > Code Style > File and Code Templates
You can add a new template. Mine looks like this:
/**
* @author Junior RT
* @version 1.0
* @license Get Arrays, LLC (Get Arrays, LLC)
* @email getarrayz@gmail.com
* @since $DATE
*/
Thank you very much
Please create more ReactJs, Spring boot, and MySQL Web App Tutorials ❤
Hello Bro, I do love to take your course on Full Stack java on your website but as a student from Africa, I can't afford the 100$. Is there a possibility of getting a discount to enroll for the course? If possible, please do let me know. Thanks.
For someone who lives in a country with really high usd rate, 100$ is expensive
Why no use tanstack reack query?
Because this course is for beginners and I'd rather use Redux.
Please do more react stuff… please 🙏
bro, u could have explained the class ContactResources, u speedrunning
Hey my dawg, I come from a MERN PERN and NEXT.js background bruh, please make a video where you create a crud app (springboot and react) and deploy it for free using render or something. I really dont know how to do it with springboot
plzz make a video on spring Security with react
I already did. It’s the latest video on the channel
@@GetArrays for beginners
Why no project has user authentication? Man, I'm tired of finding one.
Big project with authentication, authorization, etc is coming very soon
@@GetArrays GREAT!!!
Sir Can you add login validation in this tutorial? It will be very helpful. Please sir make it.
@Get Arrays
Coming soon
i came here to learn spring. now i think i need to learn lamda first.
so disappointing
What’s so disappointing??
@@GetArrays sorry Your spring code is okay, Im just not familiar with Lamdas
❤❤❤❤❤❤❤❤❤❤❤❤
Good Morning sir
I have this error, can you please to clear this error: Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
2023-12-20T09:59:31.914Z ERROR 15588 --- [ main] o.s.boot.SpringApplication : Application run failed
were you able to solve it??
35 minutes in and this tutorial just drives into a ditch as the back end piece won't run if you are just following along. The code that was skipped over can be fetched from the referenced github, but there's no mention of configuring/starting the database either... Tossing up a YML file for the PostgreSQL in github with a comment at the top for how to run it for those that don't know would address that.
Probably salvage-able if this author wants.... I'd strongly recommend adding a README to your github for the backend, note what files were missing and need to be copied, put up a YAML file that can be ran via docker-compose and reference those (change application.yml to refer to locahost too). The remaining 2.5 hours are kind of wasted if this front part just crashes and burns like it does currently.
You know what happens with JavaScript libraries. This course is a bit old and these versions change all the time. The README file idea is nice though. But hey nice subtle and clever use of words just to insult me and the work that I put together and give it for free. That’s just the pattern of the Internet, isn’t it? Anyways, thanks for the feedback.
This is basically a bug report, not an insult. I've pointed out the problem and suggested remedies. I'll make you a deal though, if you pin a comment with the workaround, I'll re-test and amend my original comment with the experience.
I was hoping to see you live coding. But turns out see you copy and paste. Kind of disappointed!
This isn’t a course about HTML and CSS or UI design and it’s the only code that’s copied and pasted. You’re being unreasonable. But okay.
Williams Michelle Robinson Cynthia Rodriguez Angela
Are you fan of Lionel Messi? che
very nice. Thank you
I have waited for this video for such a long time!