This is a java project and unfortunately will not run on this site.
This project creates a website for a fictious Moffat Bay Lodge. It allows the user to see all of the attractions available at the lodge as well as information about the management team.
The user is allowed to browse the site with the option of logging in. After the user logs in, they are allowed to reserve room(s) and see existing reservations. This program uses
java, javascript, servlets, jsp, javabeans, DAO, JDBC connections, MySQL Database tables, HTML, CSS, and more.
Eclipse Project Explorer
Landing Page
This screen displays several pictures of the lodge along with brief descriptions.
index.jsp code snippet
About Page
This screen displays information about the lodge and management team. It also provides a Contact Us section.
aboutus.jsp code snippet
Attractions Page
This screen allows the user to click through various attractions offered at the lodge along with brief descriptions.
attractions.jsp code snippet
Reservation Page
This screen allows the user to make a reservation. Messages appear to inform the user of errors in the selections or unavailability.
The reservation information is collected, compared, and stored in mysql database tables.
ReservationDao.java code snippet
Reservation Look-Up Page
This screen allows the user to look up any and all existing reservations for the user. Information is stored and retrieved from mysql database tables.
SummaryServlet.java code snippet
Registration Page
This screen allows the user to register on the site. All user information is stored in mysql database tables. Passwords are encrypted when stored.
RegistrationBean.java code snippet
Log In Page
This screen allows the user to log in to the site. User information is compared to the information stored in the mysql database tables.