Banking 🏦 System in Java JDBC - Java Project 🔥for beginners with source code

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ต.ค. 2024
  • 🚀 Welcome to our Java project tutorial for beginners! In this video, we'll walk you through building a complete Banking System using Java and JDBC. Whether you're new to programming or looking to enhance your Java skills, this project is a great way to learn and practice.
    Here's what you'll learn in this project:
    🔧 Setting up the Development Environment: We'll start by setting up your Java development environment, ensuring you have all the necessary tools and libraries.
    🏦 Creating a Database: You'll learn how to design a database schema for our Banking System using MySQL or any database system of your choice. We'll guide you through creating tables for users and accounts, setting up relationships, and defining constraints.
    ☕ Java JDBC Connectivity: We'll show you how to connect Java to your database using JDBC, a crucial skill for any database-driven application.
    📝 User Registration and Login: You'll implement user registration and login functionality, allowing users to create accounts and access their accounts securely.
    💰 Managing Accounts: Learn how to create, debit, credit, transfer money, and check balances in user accounts.
    🔐 Implementing Security Measures: We'll discuss best practices for securing user data and transactions within your Banking System.
    🖥️ User-Friendly Interface: While we'll focus on backend functionality, we'll provide guidance on how to create a user-friendly interface if you want to expand this project further.
    📂 GitHub Repository: github.com/pra...
    By the end of this tutorial, you'll have a fully functional Banking System in Java that you can use as a foundation for future projects or to showcase your skills to potential employers.
    Don't worry if you're new to Java or JDBC - this tutorial is beginner-friendly, and we'll explain each step thoroughly. The source code is available for download in the video description, so you can follow along and practice what you've learned.
    Ready to start your journey into Java and database-driven applications? Let's dive in and create your Banking System project together! 🎉 Don't forget to like, subscribe, and hit the notification bell to stay updated with our programming tutorials. Happy coding! 💻👩‍💻👨‍💻
    Video Tags -
    banking system in java
    banking management system java project
    banking system java project
    banking management system in java
    banking system java project github
    banking system java source code
    java project for beginners
    java project with source code
    java projects for resume
    java project with database
    jdbc projects
    java projects with database connectivity
    java projects with source code in hindi
    banking system project
    banking management system in java project
    java

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

  • @chetanchaudhary1890
    @chetanchaudhary1890 ปีที่แล้ว +11

    Bro really your work and dedication is appreciable. Loved your quality content which is as per industry standards. More power to you bro. Just share your socials so that we can connect to you.

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

      Thanks for the precious feedback Chetan 😊.
      Will be looking forward to deliver more valuable content.

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

      @@indianprogrammer0001 if possible plz. share ur socials with us.

    • @aiyanhazz6776
      @aiyanhazz6776 9 หลายเดือนก่อน

      how can i connect it with with my database for running in my computer

    • @rohannule4416
      @rohannule4416 7 หลายเดือนก่อน

      @@aiyanhazz6776 just check you have mysql connecter jar library added or not.

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

      @@aiyanhazz6776 Watch this playlist's 3rd video

  • @aiyanhazz6776
    @aiyanhazz6776 9 หลายเดือนก่อน +8

    how can i connect it with with my database for running in my computer

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

    Really helpful project to understand every details related to JDBC.... Are we getting hibernate projects near soon?

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

      Sure ☑️

    • @aiyanhazz6776
      @aiyanhazz6776 9 หลายเดือนก่อน

      how can i connect it with with my database for running in my computer

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

    Master please make playlist on multithreading and Collections

  • @gayatrigomase6026
    @gayatrigomase6026 10 หลายเดือนก่อน

    Fantastic explanation ✌💫, really helpful😊

    • @aiyanhazz6776
      @aiyanhazz6776 9 หลายเดือนก่อน

      how can i connect it with with my database for running in my computer

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

    It would be nice if you explain it while writing code

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

      Video becomes too lengthy but next time I’ll try this 😊

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

    Bhai swing ka use karke koi project banana seekhao please. Jisme OOP ke concepts aur JDBC ka use ho

  • @hifzakhalid7367
    @hifzakhalid7367 6 หลายเดือนก่อน +1

    Any Java mysql project with drag & drop gui on your channel?

  • @samir_kumar_panjha
    @samir_kumar_panjha 26 วันที่ผ่านมา

    Sir, MY SQL main iss type ka table kese create kare.....???? 😢

  • @Varsha-km6bc
    @Varsha-km6bc 12 วันที่ผ่านมา

    For creating frontend what should we use?

  • @-CSE-Nandkumar
    @-CSE-Nandkumar 12 วันที่ผ่านมา

    @indianprogrammer0001 what were the difficulties you faced while building this project?

  • @tanvichavan8382
    @tanvichavan8382 11 หลายเดือนก่อน

    Wht are you using swing or angular js?

  • @RishiRajMusa
    @RishiRajMusa 25 วันที่ผ่านมา

    why you stopped making videos ?

  • @noobdotx
    @noobdotx 9 หลายเดือนก่อน

    Bhai, Can you make a video on JSP aswell?

  • @silu945
    @silu945 9 หลายเดือนก่อน +2

    Bro Can You Also Share MySQL Query

    • @anuragjais5848
      @anuragjais5848 9 หลายเดือนก่อน

      CREATE DATABASE IF NOT EXISTS BankDB;
      USE BankDB;
      CREATE TABLE IF NOT EXISTS account (
      account_no BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT,
      full_name VARCHAR(200) NOT NULL,
      email VARCHAR(200) NOT NULL UNIQUE,
      balance DECIMAL(10,2),
      security_pin CHAR(4)
      );
      CREATE TABLE IF NOT EXISTS user (
      full_name VARCHAR(200),
      email VARCHAR(200) PRIMARY KEY,
      password VARCHAR(200)
      );

  • @EBKCS_BhavukGaur
    @EBKCS_BhavukGaur 7 หลายเดือนก่อน +1

    hey, you are doing great, just keep going, i saw you stoped posting new videos plz don't. It is helping us alot.

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

    Really liked this project explanation, great work!!!!
    Just a small question regarding that all the SQL query written using PreparedStatement Interface could be achieve by normal Statement Interface as well.
    For example:
    String register_query = "INSERT INTO User(full_name, email, password) VALUES(?, ?, ?)";
    try {
    PreparedStatement preparedStatement = connection.prepareStatement(register_query);
    preparedStatement.setString(1, full_name);
    preparedStatement.setString(2, email);
    preparedStatement.setString(3, password);
    }
    can be done by:
    String query = "insert into user (full_name,email,password)"
    + "values('" + full_name + "' , '" + email + "' , '" + password + "' )";
    try {
    Statement statement = con.createStatement();
    int affected_rows = statement.executeUpdate(query);
    }
    In my opinion leveraging Statement Interface looks more clean than using PreparedStatement Interface. How can we differentiate between the two and when to use which Interface?
    Please enlighten us over this particular confusion. #QualityVidoes #Java #JDBC

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

      When you have lots of arguments to be passed in a query when you use joins and write complex sql queries, then you need to use prepared statements.
      Also prepared statements are way faster than normal statements as they are precompiled.
      In case you feel difficulty and has confusion using prepared statement I would recommend you to please watch my prepared statement youtube video, you’ll never ever face difficulty in using it.

  • @rahulgupta373
    @rahulgupta373 9 หลายเดือนก่อน +2

    Best Project for JDBC concept and Excellent Explanation.

  • @shashank_patil
    @shashank_patil 11 หลายเดือนก่อน +1

    Brother please make spring boot projects...we are eagerly waiting❤

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

    sir ak project fees💵 managent system banvao jisnma ham kuch front end ka sath be intract kar saka

  • @PoojaMogili-i7r
    @PoojaMogili-i7r 2 หลายเดือนก่อน

    How to create that database bro

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

    Hey bro have doubt in line number 41 and line 47 of Accounts Class why exception is thrown ..can we just print the failure message?

  • @akhandthakur839
    @akhandthakur839 29 วันที่ผ่านมา

    Bhi java swings ka course

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

    Java.sql sqlSyntaxerrorexception :unknown column 'account_number ' in filed list

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

    Employee payroll system wale project ko jdbc se connect kar ke btaiye please bro

  • @timetalk905
    @timetalk905 20 วันที่ผ่านมา

    ❤❤❤

  • @Thejas_P_Karkera
    @Thejas_P_Karkera 10 หลายเดือนก่อน

    Bro.. Can u share the link to download your wallpaper? Please

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

    HOW CAN WE DO THIS PROJECT BY WRITING QUERY THROUGH MYSQL, BHAYIA

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

      bro you have to write some sql queries in java even if you do it minimal, though you have to write data retrieval and updation queries.

  • @DivyanshiJaiswal-b3o
    @DivyanshiJaiswal-b3o 2 หลายเดือนก่อน

    Bro please make hibernate , spring boot projects!!!

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

    i thankyou bhai this video is a very helpful and i see the video and i am very happy ❤❤

  • @VINAYMALVIYA-fu5ej
    @VINAYMALVIYA-fu5ej 5 หลายเดือนก่อน

    Hello how do I run this project after getting cloned from github

  • @swetham299
    @swetham299 11 หลายเดือนก่อน

    Hiii....Tq so much❤...After run this application I got an error..not error exactly ...After creating acc Account manager code executes continuous..it doesn't stop ...Please reply how to solve this problem

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

    Can we add angular frontend to it..(JDBC + Angular)

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

    Full Core Banking Laravel php chackbook integrate project

  • @MyAbhisheik
    @MyAbhisheik 4 หลายเดือนก่อน

    How can i enter our details becaise it is saying incorrect email and password

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

    bhai application ko html webserver phe kaise chalaye ?

  • @VidyaNaidu-j4z
    @VidyaNaidu-j4z 3 หลายเดือนก่อน

    Bro how can execute and which software we can use and how get output

  • @Lala-ow6cx
    @Lala-ow6cx 3 หลายเดือนก่อน

    bro please make a playlist on spring boot

  • @brajeshmohanty2558
    @brajeshmohanty2558 4 หลายเดือนก่อน

    Excellent i have learnt jsp jdbc and servlet came here to revise contact of oops and jdbc And now it is Cristal clear. 🗿✌️

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

    bhaiji if possible next time code likhte likhte explain kr sko too taaki hum bhi saath saath code kr ske

  • @shabnamhaque_
    @shabnamhaque_ 7 หลายเดือนก่อน

    such a well defined project ideal for beginners. encourages more delving into details

  • @imalkesara4466
    @imalkesara4466 3 หลายเดือนก่อน

    bro we need more cli projects like this one

  • @deekshit_Shetty
    @deekshit_Shetty 7 หลายเดือนก่อน

    bro can you share the sql queries too

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

    Github link is not working

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

    lots of love bhai 😊 Keep it up

  • @AniketKumar-jd5hf
    @AniketKumar-jd5hf 3 หลายเดือนก่อน

    Kudos 👏

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

    Thanks for sharing 🙏

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

    Thank you master for this playlist🙇‍♂

    • @aiyanhazz6776
      @aiyanhazz6776 9 หลายเดือนก่อน

      how can i connect it with with my database for running in my computer

    • @aiyanhazz6776
      @aiyanhazz6776 9 หลายเดือนก่อน

      how can i connect it with with my database for running in my computer

    • @aiyanhazz6776
      @aiyanhazz6776 9 หลายเดือนก่อน

      how can i connect it with with my database for running in my computer

  • @AnandKumar-id6gy
    @AnandKumar-id6gy 5 หลายเดือนก่อน

    bhai transaction_money method me jo aargument pass kiye ho sender_account_number or main method me call kiye ho with account_number argument.
    mera work nhi kr raha ha problem ho raha ha waha per..please help me

    • @JayprakashThakur-ib8jy
      @JayprakashThakur-ib8jy 14 วันที่ผ่านมา

      same here mera bhi ho raha hai Sir please help me out how we can deal

  • @siddhanujakamble3876
    @siddhanujakamble3876 10 หลายเดือนก่อน +1

    Thank u so much for the project. this project defanately going to add value in resume, thanks a lot.