Пікірлер
@ganeshpawar231
@ganeshpawar231 3 күн бұрын
What are the all tools required to execute this project? Like Spring boot,Java jdk 17 etc Do let me know?
@tahaansari5621
@tahaansari5621 6 күн бұрын
Amazing video and project! One thing I'd like to ask is you haven't given any notes on how to install h2 database. It is the first time I am hearing about it. Great content though! Kudos!
@codewithgoldencat
@codewithgoldencat 4 күн бұрын
You don’t need to install H2 separately to use it with Spring Boot, as Spring Boot can automatically configure and embed the H2 database if you include the spring-boot-starter-data-jpa and com.h2database:h2 dependencies in your project./ H2 database is mostly used for prototyping so its a quick way to get things up and running
@tahaansari5621
@tahaansari5621 4 күн бұрын
@@codewithgoldencat I did not know that. Thank you for sharing this information!
@anmolgyanwithscientificres7552
@anmolgyanwithscientificres7552 8 күн бұрын
Error creating bean with name 'jwtProvider' defined in file [C:\Users\Gaurav\Downloads\Ecommerce multivendor\ecommerce-multivendor\target\classes\com\zosh\config\JwtProvider.class]: Failed to instantiate [com.zosh.config.JwtProvider]: Constructor threw exception Hello bhaiya isee kaise thik kru mujhe kuch smjh nhi arha hai please help me
@codewithgoldencat
@codewithgoldencat 4 күн бұрын
This error often occurs due to issues in the JwtProvider constructor, such as missing or incorrect dependencies, misconfigured properties, or circular dependencies. Verify that all dependencies are properly defined, configuration values are correct, and check for any circular dependencies. Review the stack trace for specific error details, and ensure all required libraries are included in your project. Simplifying or unit-testing the constructor can help isolate the issue.
@anmolgyanwithscientificres7552
@anmolgyanwithscientificres7552 8 күн бұрын
Tools & Technologies: Backend (Spring Boot): Spring Boot: The core of the backend application. MySQL: A relational database to store product, user, and order information. Spring Security: Secure user authentication and authorization using JWT. Java Mail Sender: Send email notifications for order confirmations. JWT: Token-based security for user sessions. Frontend (React): React + TypeScript: Build a scalable, type-safe frontend. Redux Toolkit: State management for the eCommerce application. Tailwind CSS: Stylish and modern UI components. React Router Dom: Manage page navigation seamlessly. Axios: Handle API requests between frontend and backend. MUI: Add elegant UI elements. Formik + Yup: Form handling with validation. Payment Gatway: Razorpay ( indian student) Stripe (international student)
@tutu2461
@tutu2461 9 күн бұрын
I love your course 🤩
@artiyadav1032
@artiyadav1032 15 күн бұрын
mvn is not recognised🥲🥲🥲🥲🥲
@codewithgoldencat
@codewithgoldencat 15 күн бұрын
You might need to install maven. You can refer to any video on youtube for quick installation of maven.
@ShivaaySingh20
@ShivaaySingh20 23 күн бұрын
is it complete video to start out ?
@codewithgoldencat
@codewithgoldencat 23 күн бұрын
yes
@Ezekiel889
@Ezekiel889 26 күн бұрын
how do you add a background image to the body ? i've been struggling with this for hours... thx in advance
@codewithgoldencat
@codewithgoldencat 23 күн бұрын
I dont think i have added a background image in this project but used linear gradient through the below code background: linear-gradient(to right, #000000, #ffd700); however, if you want to use a background image you can do that with below code, just update the image path background: url('/images/background.jpg') no-repeat center center fixed;
@Ezekiel889
@Ezekiel889 20 күн бұрын
@@codewithgoldencat thx for your replay. This is the first thing i tried but it didnt work, because for some reason i couldn't use the static files. I had to change the SecurityConfig. I added "implements WebMvcConfigurer" to the SecurityConfig class and added the method @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/**") .addResourceLocations("classpath:/static/"); } and also changed this line " .requestMatchers("/register","/static/**").permitAll()" (added "/static/**" ) . Now it's working properly and i can use .css , .js files and images.
@kusumaramesh9178
@kusumaramesh9178 26 күн бұрын
By the way, Are you going to teach remote live sessions on Full stack Java courses?
@codewithgoldencat
@codewithgoldencat 23 күн бұрын
no plan as of yet
@kusumaramesh9178
@kusumaramesh9178 26 күн бұрын
Please make in detailed Spring Boot, Angular and React courses
@justsmile7449
@justsmile7449 27 күн бұрын
Hello and thnks a lot for your video i m struggling to choose between ruby on rails or spring boot is spring boot as productive as rails especially in term of speed of development
@codewithgoldencat
@codewithgoldencat 23 күн бұрын
Ruby on Rails is faster for quick development, ideal for building prototypes or MVPs with its convention-over-configuration approach. Spring Boot offers more flexibility and scalability, better suited for large, complex applications, though it requires more setup. Rails is great for speed and ease of use, while Spring Boot excels in enterprise-level scalability and long-term projects. Choose based on your project’s size and complexity
@codewithgoldencat
@codewithgoldencat Ай бұрын
If you have any doubts, feel free to post them in comment section.😇😇
@hosamessa9069
@hosamessa9069 Ай бұрын
hello brother,in this code section why are u using type:"withdarwal" like this it showing error in my eclipse? Transaction transaction=new Transaction( amount, type:"withdarwal", LocalDateTime.now(), account); transactionRepository.save(transaction); }
@hemanthkumarpothula493
@hemanthkumarpothula493 Ай бұрын
remove background music it is a little bit disturbing while listening class
@codewithgoldencat
@codewithgoldencat Ай бұрын
Already did in the future videos
@Mirtguitar
@Mirtguitar Ай бұрын
I got the following error just when i started the app the first time: "org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: [PersistenceUnit: default] Unable to build Hibernate SessionFactory; nested exception is org.hibernate.exception.JDBCConnectionException: Unable to open JDBC Connection for DDL execution [Public Key Retrieval is not allowed] [n/a]"
@adeniyitaofik3832
@adeniyitaofik3832 Ай бұрын
would be dope if one can get rest api projects built with just pure java no framework
@anuragnegi4647
@anuragnegi4647 Ай бұрын
What you have used for front end?
@codewithgoldencat
@codewithgoldencat Ай бұрын
thymeleaf
@codewithgoldencat
@codewithgoldencat Ай бұрын
If you have any doubts, feel free to post them in comment section.😇😇
@marcelobc2230
@marcelobc2230 Ай бұрын
can you do it with angular and spring ? thanks!
@lamyaatahiri-np4ug
@lamyaatahiri-np4ug 2 ай бұрын
Good project, thanks for sharing 🙂
@surbhi_diaries
@surbhi_diaries 2 ай бұрын
can we add this Project 1 2 and 3 in our resume??
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
Sure, feel free to use them as you want
@abhinjr4918
@abhinjr4918 2 ай бұрын
Please next js and spring boot
@comesitstandhere
@comesitstandhere 2 ай бұрын
massive thanks I tried to build with maven but keep getting build failures with mvn clean install
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
Hi @comesitstandhere, what's the error message that you are getting?
@DEEPAK-q7u5h
@DEEPAK-q7u5h 2 ай бұрын
Brother, project looks good. But you should also focus on telling certain aspects of your projects, like why you've used certain annotations and mappings etc. Next time, when you make any other project, do explain the significance of every line which you code.
@rahimullahhamidi4321
@rahimullahhamidi4321 2 ай бұрын
Please upload Spring boot complete Tutorial. thanks
@alonesmd
@alonesmd 2 ай бұрын
In real time projects in companies coding will do like this or any other standards will be followed?
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
Great question, when coding in a production environment, the code remains more or less the same. The only difference that comes is design pattern for example interfaces are used to provide loose coupling of code and patterns like SOLID principle are followed.
@Vivekvarma-dy2ox
@Vivekvarma-dy2ox 2 ай бұрын
Bro plz can u do a project with mongodb
@SabaNaz-fs6gh
@SabaNaz-fs6gh 2 ай бұрын
Can I take tuition class from you
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
Hi @SabaNaz-fs6gh, as of yet. I don't have any tuition class for this stuff but might do in future
@bharath4195
@bharath4195 2 ай бұрын
i am getting only login page i didn't see register
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
If you are directly using the repo then confirm if you are at end branch and you'll also need to setup your MySQL DB. So, I would recommend watching the video once.
@bharath4195
@bharath4195 2 ай бұрын
@@codewithgoldencat ya, can you do more full stack projects or microservices projects
@Web-Tech126
@Web-Tech126 2 ай бұрын
Yes we want projects with explanation brother?🎉
@goodcourseavailable
@goodcourseavailable 2 ай бұрын
More spring boot projects
@madhuppandey3151
@madhuppandey3151 2 ай бұрын
I am not able to register, just getting login page to login
@madhuppandey3151
@madhuppandey3151 2 ай бұрын
I have deployed an application using docker and while accessing it on browser it is asking for username and password Where can I find the username and password to login ?
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
Hi @madhuppandey3151, There might be various reasons as to why you are unable to login 1. If you are using the repository directly then make sure you are at the "end" branch since thats the branch that has finished project. 2. If you are deploying the application using docker then make sure that the MySQL database is setup as shown in the video. 3. If this still doesnt reslove your issue, then I would recommend you go through the video once and see if you missed something. Happy coding!
@madhuppandey3151
@madhuppandey3151 2 ай бұрын
@@codewithgoldencat can you please share the video url of your docker MySQL setup?
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
@@madhuppandey3151 Will share the link shortly
@akshitadas4895
@akshitadas4895 7 күн бұрын
Im getting lots of errors in the dashboard.html code. I have cloned the repository as well and tried, the deposit etc pages mentioned donot exist. I have gone through the entire video
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
If you have any doubts, feel free to post them in comment section.😇😇 If you want more spring boot projects, then comment down below.
@NaturesAwesome1
@NaturesAwesome1 2 ай бұрын
Bhai aap bhot aache se samjhate ho. Please make a playlist in which you make Spring boot projects like 10-15-20 projects playlist from small to medium to big.
@Chamorizard
@Chamorizard 2 ай бұрын
I am loving this video series. Thank you!
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
Glad to help.
@devidvijay1706
@devidvijay1706 2 ай бұрын
Pls make ecommerce fullstack react and spring boot project
@HemnathV-z4k
@HemnathV-z4k 2 ай бұрын
Good work bro
@mintz347
@mintz347 2 ай бұрын
do more project opriented courses like this pls!
@itz_yuno
@itz_yuno 2 ай бұрын
hyy brother I make my first website using java as backend in visual studio code i got error in some packages or some are support what should i do?
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
Hi, Whats the error message?
@itz_yuno
@itz_yuno Ай бұрын
@@codewithgoldencat sir I want to make a event management websites with html css javascript in frontend and backend java but I don't know truely how I serve and create
@itz_yuno
@itz_yuno Ай бұрын
@@codewithgoldencat sorry for late reply
@codewithgoldencat
@codewithgoldencat Ай бұрын
@@itz_yuno you can start by creating the backend using spring boot framework which would be a basic RESTful Web API and then create the backend in any java framework you are comfortable with like React, Vue or Angular (if you like typescript). For the database end, you can use a basic MySQL database. Once you have the application working in your local environment, you can move forward with deploying it using a paid or free hosting web service.
@itz_yuno
@itz_yuno Ай бұрын
@@codewithgoldencat okay thanks sir
@Bruno-ob9og
@Bruno-ob9og 2 ай бұрын
Amazing work. Keep it up!!!
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
If you have any doubts, feel free to post them in comment section.😇😇 If you want more spring boot projects, then comment down below.
@Vivekvarma-dy2ox
@Vivekvarma-dy2ox 2 ай бұрын
yes
@khushisaraswat5826
@khushisaraswat5826 12 күн бұрын
Is it good to add it in resume for java back-end developer role...
@codewithgoldencat
@codewithgoldencat 10 күн бұрын
@@khushisaraswat5826 yup, you can use this project however you want.
@Vivekvarma-dy2ox
@Vivekvarma-dy2ox 2 ай бұрын
Hey, can you do a project with react+mongo+springboot.
@codewithgoldencat
@codewithgoldencat 2 ай бұрын
Sure, we can do that in future videos
@rishu-p8k9
@rishu-p8k9 3 ай бұрын
why you have not maintained the read.md file and how can i run this project in my computer? please help
@codewithgoldencat
@codewithgoldencat 3 ай бұрын
Hi Rishu, You can either clone the repository and follow the steps shown in the video to run the application or if you want the already finished project then switch to "end" branch and just run the project using the command mvn spring-boot:run If you are getting stuck at any step, I would highly recommend going through the video once
@sidharthrout728
@sidharthrout728 3 ай бұрын
Love your video
@pranav6129
@pranav6129 3 ай бұрын
Completed the project and love to extend this project with database and security
@fame_jai
@fame_jai 3 ай бұрын
Great ❤
@COD_MW007
@COD_MW007 3 ай бұрын
Thanks for the video!!❤
@codewithgoldencat
@codewithgoldencat 3 ай бұрын
If you have any doubts, feel free to post them in comment section.😇😇 If you want more spring boot projects, then comment down below.
@carla-up1oh
@carla-up1oh 3 ай бұрын
Very useful, thank you so much!!