Skip to content

federicoromeo/Gamified-Marketing-Application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Gamified Marketing Application

An application that deals with gamified consumer data collection.

User

A user registers with a username, a password and an email. A registered user logs in and accesses a HOME PAGE where a “Questionnaire of the day” is published. The HOME PAGE displays the name and the image of the “product of the day” and the product reviews by other users. The HOME PAGE comprises a link to access a QUESTIONNAIRE PAGE with a questionnaire divided in two sections: a section with a variable number of marketing questions about the product of the day (e.g., Q1: “Do you know the product?” Q2: Have you purchased the product before?” and Q3 “Would you recommend the product to a friend?”) and a section with fixed inputs for collecting statistical data about the user: age, sex, expertise level (low, medium high). The user fills in the marketing section, then accesses (with a next button) the statistical section where she can complete the questionnaire and submit it (with a submit button), cancel it (with a cancel button), or go back to the previous section and change the answers (with a previous button). All inputs of the marketing section are mandatory. All inputs of the statistical section are optional. After successfully submitting the questionnaire, the user is routed to a page with a thanks and greetings message. The database contains a table of offensive words. If any response of the user contains a word listed in the table, the transaction is rolled back, no data are recorded in the database, and the user’s account is blocked so that no questionnaires can be filled in by such account in the future. When the user submits the questionnaire one or more trigger compute the gamification points to assign to the user for the specific questionnaire, according to the following rule:

  • One point is assigned for every answered question of section 1 (remember that the number of questions can vary in different questionnaires).
  • Two points are assigned for every answered optional question of section 2.

When the user cancels the questionnaire, no responses are stored in the database. However, the database retains the information that the user X has logged in at a given date and time. The user can access a LEADERBOARD page, which shows a list of the usernames and points of all the users who filled in the questionnaire of the day, ordered by the number of points (descending).

Administrator

The administrator can access a dedicated application on the same database, which features the following pages:

  • A CREATION page for inserting the product of the day for the current date or for a posterior date and for creating a variable number of marketing questions about such product.
  • An INSPECTION page for accessing the data of a past questionnaire. The visualized data for a given questionnaire include
    • List of users who submitted the questionnaire.
    • List of users who cancelled the questionnaire.
    • Questionnaire answers of each user.
  • A DELETION page for ERASING the questionnaire data and the related responses and points of all users who filled in the questionnaire. Deletion should be possible only for a date preceding the current date.

Technologies

  • MySQL DBMS
  • TomEE JEE application/web server
  • Java servlet and templating (Thymeleaf) for the user interface
  • EJB (stateless or stateful) for the business objects
  • JPA for object relational mapping and transaction management
  • Triggers and constraints for database-level business constraints and rules.

Click here for a detailed presentation of the project.