CONTEXTE
SUIVI
VERSION EN COURS :
- V2 - intégration de FlyWay, transactions SQL (cf src/main/resources/db/migration/V1.2__ssp.sql)
ARCHIVES
- V1 : appel JDBC opérationnel sur base Postgres sur HEROKU
DEVELOPPEMENT SUR UN POSTE LOCAL
- Récupération des sources : git clone xxx.git
- Edition des sources : éditeur de texte de votre choix (Sublime, GEdit, ...)
- Compilation : mvn compile
- Test : mvn test
- Observation des rapports de tests : navigateur target\site\surefire-report.html
- Génération de la doc du code : mvn javadoc:javadoc
- Observation de la doc du code : navigateur target\site\apidocs\index.html
DEVELOPPEMENT EN LIGNE
- Edition des sources : Github
- Test :
- Compilation : Heroku
- Test :
- Observation des rapports de tests :
- Génération de la doc du code :
- Observation de la doc du code :
Salon de discussion en ligne
Create a Java Web Application using Embedded Tomcat
This tutorial will show you how to create a simple Java web application using embedded Tomcat.
Prerequisites
- Basic Java knowledge, including an installed version of the JVM and Maven.
- Basic Git knowledge, including an installed version of Git.
- A Java web application. If you don't have one follow the first step to create an example. Otherwise skip that step.
Skip The Application Creation
If you want to skip the creation steps you can clone the finished sample and then skip to the 'Deploy Your Application to Heroku' section:
$ git clone git@github.com:heroku/devcenter-embedded-tomcat.git
Follow the Guide
If you would like to create the application yourself, then follow the Dev Center guide on how to Create a Java Web Application using Embedded Tomcat.