A Java web application that works as Urbanspoon for the city of Ottawa with added machine learning features.
The peoject was developed in Eclipse IDE for Java EE Developers environment using an Apache Tomcat 9.x server and PostgreSQL as the database of the project. We recommend you use the same environment for running on your local machine for development or testing purposes.
- Eclipse IDE for Java EE Developers - The development environment
- Apache Tomcat 9.x - The server server
- PostgreSQL - The database management system
javax.servlet.jsp.jstl-1.2.5-b03- Java Servlet and JavaServer Pages librarytaglibs-standard-impl-1.2.5- Tag Libraries for use with Java Server Pages (JSPs)taglibs-standard-jstlel-1.2.5- Tag Libraries for use with Java Server Pages (JSPs)taglibs-standard-spec-1.2.5- Tag Libraries for use with Java Server Pages (JSPs)postgresql-42.2.1- JDBC driver for postgreSQLjython-standalone-2.7.0- Jython library to run python on Java platform
- Parami Gunasekara - @paramigunasekara
- Artem Tarasov - @artemtar
- Aleksandr Shumarov - @Aleks048
public static void main(String[] args) {
try {
Class.forName("org.postgresql.Driver");
Connection db = DriverManager.getConnection("jdbc:postgresql://localhost:5432/postgres?currentSchema=ottawaspoon", "postgres", "postgres");
Statement st = db.createStatement();
st.close();
} catch (Exception e){}


