Skip to content

Assignment for the 2018 edition of the "Web Development and the Semantic Web" course, by Gabriel Gonçalves Nogueira and Nicolas Ferreira de Aguiar Tancredi.

Notifications You must be signed in to change notification settings

dwws-ufes/2018-Bathroom

Repository files navigation

PoopTime

Assignment for the 2018 edition of the "Web Development and the Semantic Web" course, by Gabriel Nogueira and Nicolas Aguiar

How to deploy

Instructions on how to deploy from scratch are listed below. If you need detailed instructions on how to set up Eclipse, WildFly and MySQL, please refer to this tutorial at JButler's wiki.

  1. Install Eclipse Photon (version 4.6.x);

  2. Install WildFly 13.x and create a Server configuration within Eclipse;

  3. Install MySQL and create a schema called pooptime and a user called dwws with password dwws and full access to the homonymous database;

  4. Configure the MySQL JDBC driver in WildFly;

  5. Configure the datasource in WildFly's standalone.xml file:

 <datasource jta="true" jndi-name="java:/jboss/datasources/PoopTime" pool-name="PoopTimePool" enabled="true" use-java-context="true">
	<connection-url>jdbc:mysql://localhost:3306/pooptime</connection-url>
	<driver>mysql</driver>
	<security>
	    <user-name>dwws</user-name>
	    <password>dwws</password>
	</security>
 </datasource>
  1. In Eclipse, use File > Import > Git > Projects from Git to import the Eclipse project existing in this repository;

  2. You might have to adjust the server settings in the imported project: right-click the PoopTime project and select Properties. In the Server section, select the WildFly 13.x server. In the Targeted Runtimes section, select the WildFly 13.x Runtime;

Authors

  • Gabriel Nogueira
  • Nicolas Aguiar

About

Assignment for the 2018 edition of the "Web Development and the Semantic Web" course, by Gabriel Gonçalves Nogueira and Nicolas Ferreira de Aguiar Tancredi.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published