Skip to content

Repository for fourth assignment of lecture Software Engineering in summer 2024.

License

Notifications You must be signed in to change notification settings

SaBil153/se24-assignment4

 
 

Repository files navigation

Software Engineering Summer 2024

This repository is used to showcase concepts such as build automation, code quality monitoring, continuous integration, behavior-driven development, as well as architectures for web applications.

Spring Boot Web Application

Start application

mvn spring-boot:run

Get list

curl http://localhost:8080/list

Append to list

 curl --header "Content-Type: application/json" --request POST --data '[{"value": 0.5, "metadata": ""}, {"value": 0.6, "metadata": ""}]' http://localhost:8080/list  

Append to list (malformed body)

 curl --header "Content-Type: application/json" --request POST --data '[{"value": 0.5; "metadata": ""}]' http://localhost:8080/list  

Clear list

curl --request DELETE http://localhost:8080/list

About

Repository for fourth assignment of lecture Software Engineering in summer 2024.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Java 93.5%
  • Gherkin 6.5%