--
You received this message because you are subscribed to the Google
Groups "Java EE (J2EE) Programming with Passion!" group.
To post to this group, send email to
java-ee-j2ee-progr...@googlegroups.com
To unsubscribe from this group, send email to
java-ee-j2ee-programming...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en?hl=en
Hi Makrand
You may come-up with a small banking application with the following functionalities:
1. Account creation.
2. Deposit
3. Withdrwal
4. Balance checking
5. Statement generation
DB:
1. One Account master table with account information along with current balance
2. One transaction table that would contain deposits and withdwrawls
Hints:
1. It may not consider curency note deniminations or check details
2. Account creation will insert one record in Account master
3. Deposit/Withdwarl shall insert one record in transaction table and update current balance in Account master
(It should validate the availablity in case of withdrawl)
4. Balance checking will show the current balance from the account master
5. Statement generation will provide the transaction listing based on from/to date provided by the user.
I thought it to be good practice project as because the domain is known to almost every common man.
Bye for now.
regards
Swapan Kumar Nandi
----- Original Message ----- From: "java programming with" <maks...@gmail.com>
To: "Java EE (J2EE) Programming with Passion!" <java-ee-j2ee-progr...@googlegroups.com>
Sent: Tuesday, September 28, 2010 6:41 PM
Subject: [java ee programming] Project idea in struts & hibernate