Difference between revisions of "ACS2017"

From air
Jump to navigation Jump to search
Line 40: Line 40:
   
 
Possible extensions for the homework : https://air.imag.fr/index.php/Contributions_open-source_au_projet_JHipster
 
Possible extensions for the homework : https://air.imag.fr/index.php/Contributions_open-source_au_projet_JHipster
  +
* New datatypes : color, geocode, geolocation
  +
* New data presentations : charts, heatmap, carpet, punch card for time-series.
  +
* New containers : [[HAProxy]] with SSL Termination and Let's Encrypt, PostGRES with [[PostGIS]] extension
   
 
=Annex 1 : Extended Bugtracker JDL=
 
=Annex 1 : Extended Bugtracker JDL=

Revision as of 12:14, 12 December 2017

This page is the entry point of the ACS (Architectures, Components and Services) course of the MOSIG AISSE curriculum.

Schedule

DD : Didier DONSEZ JBS : Jean-Bernard STEFANI

  • 03/10 : JBS : Introduction
  • 10/10 : DD : Introduction to JHipster and presentation of the homework.
  • 17/10 : DD : Introduction to Services .
  • 24/10 : Homework
  • 31/10 : Holidays
  • 07/11 : DD : Introduction to REST and and Micro Services
  • 14/11 : JBS :
  • 21/11 : JBS : Reported
  • 28/11 : DD : Introduction to Generative Programming Media:generativeprogrammingtools.pdf + JHipster code review
    • Bonus: Inspect the MBeans your JHispter applications with the MBean plugin of the JVisualVM.
  • 05/12 JBS Formal component foundations (1H30)
  • 12/12 DD (1H30) Generative Programming in practice with JHipster
  • 19/12 JBS : Formal component foundations (1H30)
  • ??/01 JBS & DD : Homework defense + Satisfaction survey

Homework

Homework introduction slides https://docs.google.com/presentation/d/14xH8_LrpsI95kIs3CjgMnKzNrHji38kthC5Lvxpjys4/edit?usp=sharing

Have a glance on the JDL examples https://github.com/jhipster/jdl-samples/

JHipster key technologies

Possible extensions for the homework : https://air.imag.fr/index.php/Contributions_open-source_au_projet_JHipster

  • New datatypes : color, geocode, geolocation
  • New data presentations : charts, heatmap, carpet, punch card for time-series.
  • New containers : HAProxy with SSL Termination and Let's Encrypt, PostGRES with PostGIS extension

Annex 1 : Extended Bugtracker JDL

DEFAULT_MIN = 1
DEFAULT_MAX = 3

/**
 * This is a project to track
 * @author Didier
 */
entity Project {
	name String required minlength(6) pattern("^[-_ a-zA-Z0-9]*$")
}

/**
 * This is a label for tagging the projects
 * @author Didier
 */
entity Label {
	/**
	* The name of the label
	*/
	label String required minlength(3)
}

entity Ticket {
	/**
        * The title of the ticket
        */
	title String required,
	description String,
	priority Integer min(DEFAULT_MIN) max(DEFAULT_MAX) 
	dueDate LocalDate,
	done Boolean
}

relationship ManyToMany {
	Ticket{label(label)} to Label{ticket}
}

relationship ManyToOne {
	Ticket{project(name)} to Project
}

relationship ManyToOne {
	Ticket{assignedTo(login)} to User{ticket}
}

dto * with mapstruct
angularSuffix * with bt
paginate Ticket with pagination

Links