Team members: Jiahao Chen, Zhanchun Wang
All the code are written by Jiahao and Zhanchun, and we do not plagrize anyone.
To deploy, we build war file using maven and move it into tomcat webapp folder.
For our substring matching, we use "like '%substring%'" in our sql for title, directors, and stars search(not including year). To find the title which starts with non-alphanumerical characters, we use "title REGEXP '^[^a-z0-9A-z]'".
Jiahao Chen is the group leader and he set up both the backend and frontend of login page, search and browse page, jump functionality and all the css files.
Zhanchun Wang set up the backend and frontend of shopping cart page, payment page and additional performance, and upload all files to AWS server and record the video.
Jiahao Chen finished task: 2,4,6
Zhanchun Wang finished task:3,5,7
The java files we use preparedstatement are
- loginServlet.java
- movielistServlet.java
- paymentServlet.java
- dashboardServlet.java
- dashboard_addmovie.java
Two parsing time optimization strategies: We choose to handle the three xml files by write the result into csv files first, and we also dump the whole database into csv files to compare with the new files, which significantly reduce the comparision time. Instead of using insert statements, we use load function to load the handled data from the csv file into the moviedb database directly. Two strategies help us to finish task 7 in less than 10 sec.
Inconsistency data link
###project4 Proj4 Demo To deploy, we build war file using maven and move it into tomcat webapp folder. We did not do the fuzzy search. Jiahao Chen do the Android part, and Zhanchun Wang do the auto-complete and full-text search.
-
-
Project 5 Video Demo Link: https://drive.google.com/file/d/1f9x4U82iFDcNGkE5rsNnjSc69c7IKktr/view?usp=sharing
-
-
Context initContext = new InitialContext();
Context envContext = (Context) initContext.lookup("java:/comp/env");
DataSource ds = (DataSource) envContext.lookup("jdbc/moviedb");
or
DataSource ds = (DataSource) envContext.lookup("jdbc/moviedb-write");
-
-