Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: help me plz

  1. #1
    Junior Member
    Join Date
    Nov 2012
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default help me plz

    Hello
    plz could you help me by this:

    You are required to build a web site using java servlet and JSP. The site is a portal for a bank that customers can use to access their accounts information. Here is the database:
    • Customer (id, firstName, lastName, login, password)
    • Branch (id, branchName, city, telephone)
    • Account (number, customerId, branchId, balance)
    • Transaction (id, fromAccountNumber, toAccountNumber, amount, kind, theDate) where "kind" has one of the following values: "credit" when an amount of money is added to "toAccountNumber", "debit" when an amount of money is debited from "fromAccountNumber", "transfer" when an amount of money is transferred from "fromAccountNumber" to "toAccountNumber".
    A customer may have many accounts. A branch contains many accounts.
    You are required to write the following dynamic web pages using java servlets. You can use any kind of database you prefer.
    1. A page to login
    2. A page to display the list of account that a customer has. When the user clicks on an accounts, the last ten transactions on this account are displayed with the balance.
    3. A page to display the branches of a given city.
    4. A page that permits the user to transfer an amount of money from one of his accounts to another account given by its number. The user chooses his account from a dropdown list containing all his accounts.
    You are required to write the following dynamic web pages using JSP:
    1. A page to manage (add/delete/update) a customer
    2. A page to manage (add/delete/update) a branch
    3. A page to manage (add/remove) an account
    JSP forms should be validated properly using Javascript.


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: help me plz

    Sure we can help, but we are not a homework or code service, and your post is suggestive that you are looking for someone to do this for you (which is not how these forums work, and given this looks to be homework is academic dishonesty). The best way to make use of these forums is to show you made an attempt, and ask a specific question regarding your code (does it compile, run as expected, are there exceptions, etc...)

  3. The Following User Says Thank You to copeg For This Useful Post:

    java_lang_Object (December 11th, 2012)

Similar Threads

  1. help me plz =(
    By A.O.L in forum Java Theory & Questions
    Replies: 3
    Last Post: September 27th, 2012, 08:06 PM
  2. I need help Plz
    By websit in forum Object Oriented Programming
    Replies: 3
    Last Post: April 11th, 2012, 12:18 PM
  3. Help me plz ...
    By xxxxjayxxx in forum What's Wrong With My Code?
    Replies: 3
    Last Post: March 12th, 2011, 12:04 PM
  4. HELP ME HERE PLZ ... =(
    By Yazan in forum What's Wrong With My Code?
    Replies: 12
    Last Post: May 20th, 2010, 08:55 PM