Génie logiciel

224 documents à télécharger gratuitement

Cours, examens, TD, TP et exercices de génie logiciel. Thèmes couverts : UML, MERISE, conception, architecture logicielle, Scrum, agile.

Examen de TP - Atelier Système d’Information Décisionnel

Cet examen porte sur l'extraction des données clients et des ventes par internet d'une base de données. Les étudiants devront utiliser divers composants de flux de données pour récupérer des informations et effectuer des transactions. Il inclut également l'implémentation de transformations de données et la gestion des flux de contrôle.

donn
composant
base
3p0
Microservices: Concepts, Use Cases, and Differences Across Platforms

This document introduces a comparative analysis of monolithic and microservice architectures, discussing their methodologies, benefits, and limitations. The monolithic architecture, though simple to deploy, faces challenges in modularity, scalability, and flexibility. In contrast, microservices promote modular development, decentralized governance, and flexibility by splitting applications into small, independent units communicating via APIs. However, microservices come with added complexity in inter-component communication and monitoring. Different implementation practices across popular p...

microservices
vertical scalability
bounded context
19p0
Introduction aux SOA

This document explores the concept of Service-Oriented Architecture (SOA) as a critical style of software architecture for modern information systems. It traces the evolution of distributed architectures from client-server to web-based and finally to SOA, highlighting the advantages of loose coupling, modularity, and standardization for cross-platform interoperability. It breaks down the principles and characteristics of SOA, such as standard contracts and the reuse of services, and elaborates on technologies like Web Services (extended and RESTful) that operationalize SOA. The document als...

Architecture Orientée Services
SOAP
REST
8p0
Software Quality Assurance Online Quiz Analysis

This document outlines the results and content of a software quality assurance quiz completed by Mohamed Trabelsi. It evaluates understanding related to software testing techniques, including formal verification methods and CMMI quality levels. The exam underscores the differentiation between validation and verification processes, methods of measuring software quality, and compatibility between software development phases and testing types. It concludes with an exploration of manual versus automated testing methods and emphasizes that exhaustive error detection is not feasible.

Software Quality Assurance
CMMI
Verification
6p0
Fiche TD 3 : Design Patterns

This document focuses on the application of design patterns within software architecture. The first exercise explores the adaptation of UI components to multiple standards, such as Motif and Presentation Manager, and asks for suitable modeling solutions for widget portability. The second exercise applies the observer design pattern to a system that collects meteorological data and transmits it to a smartphone and LCD display, requiring both class diagram construction and Java implementation.

Design Patterns
Observer Design Pattern
Software Widgets
Institut Supérieur d'Informatique1p0
Architectures Logicielles: Modélisation et Analyse - Partie II : Les design patterns

This document provides an in-depth examination of design patterns in software architectures, discussing their motivations, classifications, and applications. It introduces key patterns such as Singleton, Factory, Observer, Composite, Adapter, Strategy, and Bridge, explaining their respective problems, solutions, and UML representations. These patterns allow for more efficient and reusable software solutions by addressing specific recurring problems in software design. The document also illustrates practical implementations in object-oriented programming, emphasizing reusability, low couplin...

design patterns
Christopher Alexander
Observer pattern
Institut Supérieur d'Informatique29p0
Modélisation de l’architecture logicielle avec UML : Diagramme de paquetage

This document focuses on the design and modeling of a software system using UML diagrams with a case study centered on a training management system. Key steps include creating class diagrams to model relationships, organizing the model into business-oriented packages, and recommending modifications based on feedback. A three-tier architecture with the MVC pattern was adopted to constrain direct access to data. Finally, sequence diagrams detailing the formation process in the proposed architecture were created.

UML
class diagram
three-tier architecture
Institut Supérieur d'Informatique1p0
Modélisation de l’Architecture Logicielle : Système de Gestion de la Sécurité d’une Mine

The document focuses on the development of a safety management system for an underground mining operation. The core methodology involves designing a system that monitors two key safety factors: water level in the sump and methane concentration in the air. Sensors and control mechanisms regulate water levels via pumps and trigger alarms for methane levels to ensure evacuation protocols. The system architecture must prioritize interaction between water level management and methane monitoring to avoid risks like explosions while supporting modular development using AADL and UML models.

safety management
Level Sensor (LS)
Methane Sensor (MS)
Institut Supérieur d'Informatique2p0
Architecture en Couches: Exemple

This document elaborates on structuring software projects by leveraging layered architecture principles. It introduces a simplistic example of a calculator project, highlighting separation concerns between the user interface (IHM) and the core functionality (business logic). Critiques emphasize the necessity of modularity and the adoption of design models such as MVC (Model-View-Controller). The document provides a comparative analysis between monolithic and multi-layered designs, advocating for the division into reusable components to improve maintainability and scalability.

software architecture
MVC
design patterns
14p0
AADL Tutorial: Architecture Analysis & Design Language Overview

The document provides a comprehensive overview of the SAE AADL standard, focusing on its applicability to real-time, embedded, and fault-tolerant systems. It details the structural elements of AADL, such as components, connectors, systems, and properties, while introducing its use in architecture-driven design and predictive system engineering. Historical context like MetaH, an AADL precursor, and case studies highlight significant cost and time savings when adopting AADL for system reengineering. The tutorial emphasizes the modular, extensible, and reusable nature of AADL for designing pre...

AADL
SAE standard
MetaH
218p0
Représentation de l’architecture: Les langages de description des Architectures (ADL)

This document explores the formal representation of software architectures using Architecture Description Languages (ADLs), with a specific focus on AADL (Avionics Architecture Description Language) and UML diagrams. It discusses the capabilities of ADLs in analyzing, reasoning, and managing the complexity of software systems, emphasizing their use in graphic, textual, and XML formats for diverse modeling needs. AADL's software and hardware components, system modes, and ports are highlighted alongside UML's structured modeling via deployment, component, and package diagrams to represent arc...

Architecture Description Languages (ADL)
AADL (Avionics Architecture Description Language)
UML (Unified Modeling Language)
32p0
Architectures Logicielles: Modélisation et Analyse

The document presents an introduction to software architectural design, emphasizing the role of architecture as a high-level structure that organizes components, defines interactions, and adheres to governing rules. It outlines the purpose and importance of software architecture in meeting functional and non-functional requirements, and influencing system qualities such as performance, safety, security, and availability. The methodology emphasizes a balance between intentional and emergent architectural practices, particularly within Agile methodologies, highlighting the iterative and adapt...

software architecture
4+1 Model
agile methodologies
Institut Supérieur d'Informatique19p0
Introduction to DevOps

This document provides an introductory overview of DevOps, highlighting its importance in bridging the gap between development and operations in IT. The methodology addresses the 'Time to Market' challenge through automation, collaboration, and agile practices. It elaborates on the benefits, including faster deployment, improved IT performance, and reduced failure rates. Emphasis is placed on core principles like infrastructure as code, continuous integration, and fostering a culture of adaptability for business agility.

DevOps
Time to Market
Continuous Integration
19p0
Pipeline DevOps: Concepts and Implementation

This document provides a comprehensive breakdown of the concept and phases of a DevOps pipeline, emphasizing practices for efficient software development and deployment. It outlines the major phases, including planning, coding, integration, testing, release, deployment, monitoring, and feedback, illustrating how automation enhances consistency and reliability. Key methodologies such as CI/CD (Continuous Integration & Continuous Delivery) are explained alongside tools like Jenkins and GitLab for implementation. The document concludes with practical steps for setting up a pipeline, from choos...

DevOps
CI/CD
Continuous Integration
23p0
Mini Projet 5 : Développement Logiciel avec DevOps

The document outlines the requirements and tasks for creating a web application for managing elections, focusing on administrative functionalities like CRUD operations, candidate and elector management, and real-time statistics. Security measures include captcha-based bot prevention, HTTPS, and anonymous voting mechanisms. Teams are expected to collaborate on source control platforms like Github/Gitlab, use CI/CD pipelines with tools such as Gitlab CI or Jenkins, and deploy applications on Heroku. Deliverables include a detailed report of up to 30 pages encompassing technology choices, appl...

CRUD
captcha
CI/CD pipeline
2p0
Examen Blanc Release 2018

This document is a mock examination designed to assess the knowledge of software testing principles as outlined by ISTQB standards. It includes multiple-choice questions focusing on testing fundamentals, methods, principles, and technical strategies, emphasizing decision-based testing, coverage metrics, and maintenance criteria. Additionally, it explores the application of static and dynamic testing, and reviews processes under formal settings, aiming to evaluate both theoretical and applied understanding of testing paradigms. Answers require comprehension of key methodologies and evaluatio...

ISTQB
software testing principles
decision coverage
12p0
EXAMEN de Revision SOA

This document is an exam focused on Service-Oriented Architecture (SOA), covering topics such as interoperability, XML validity, JAXB, JAX-RS, JAX-WS, WSDL, and SOAP protocols. Questions assess the understanding of XML patterns, namespaces, Java annotations, and different approaches for creating web services. Practical problems examine concepts like XML serialization, RESTful APIs, and correct SOAP message formats. Additionally, the implementation and validation of WSDL and schema definitions are deeply evaluated.

SOA
XML
JAX-WS
5p0
EXAMEN - Architecture N-tiers

This exam tests knowledge on multiple frameworks and architectures including Spring Framework, .NET, and Service-Oriented Architecture (SOA). It covers class diagrams, entity relationships, annotations, and service deployment using REST MVC and Hibernate. Additionally, it involves debugging common development errors, implementing logic in Spring, managing database conventions in Entity Framework, and understanding migration files in .NET EF Code-First development.

Spring Framework
Spring Data JPA
Spring REST MVC
17p0
MCOO - DS : Compléments UML2

This document discusses the new features of UML 2.0 sequence diagrams. It elaborates on the concepts of interaction fragments and operators. Various operators such as Alt, Opt, Loop, Ref, Break, and Par are introduced along with their representations.

diagramme
comple
mcoo
4p0
Conception Orientée Objet

This document introduces the concept of state-transition diagrams as part of object-oriented design. It covers fundamental concepts such as state, transition, event, guard, action, and activity. The document also discusses decision points, composite states, and elaboration processes.

etats
etat
objet
39p0
Diagramme de Cas d’utilisation

Ce document présente les principes fondamentaux des diagrammes de cas d'utilisation, leur utilité dans la définition des systèmes et l'identification des acteurs. Il fournit des exemples et explique comment ces diagrammes aident à clarifier les exigences et à structurer les tests. Les concepts de base, tels que les acteurs et la relation entre le système et les utilisateurs, y sont également abordés.

syst
dutilisation
quot
58p0
Méthodes de conception orientées objet

Ce cours vise à introduire les concepts de l'orienté objet et à fournir une vue d'ensemble des méthodes de conception orientées objet. Les étudiants apprendront également le formalisme d'UML et comment réaliser un projet SI selon ce formalisme. Le cours inclut une bibliographie pour approfondir les thèmes abordés.

abdellatif
sentation
mcoo
FST3p0
Méthodes de conception orientées objet

Ce document traite des méthodes de conception orientées objet, avec un accent particulier sur la modélisation statique à l'aide de UML. Il inclut une introduction aux différents types de diagrammes utilisés dans ce processus, notamment les diagrammes de classes, d'objets, de composants et de déploiement. Les concepts fondamentaux associés au diagramme de classes sont également abordés, offrant ainsi une compréhension approfondie des éléments essentiels de la modélisation orientée objet.

mode
lisation
abdellatif
FST34p0
Conception Orientée Objet

Ce document traite des diagrammes d'interaction dans le cadre de la conception orientée objet. Il présente les concepts fondamentaux des diagrammes de séquence et de collaboration, soulignant leur importance dans le processus de capture des besoins et de conception. Les différentes notions, notamment la ligne de vie des objets et la communication entre ces derniers, y sont expliquées.

erateur
objet
objets
34p0

Autres ressources en génie logiciel