Skip to content

mkirchbach/se24-assignment4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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 '[0.5, 0.6]' http://localhost:8080/list  

Append to list with verbose output

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

Append to list with verbose output (malformed body)

 curl --verbose --header "Content-Type: application/json" --request POST --data '[0.5, 0.6' 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

 
 
 

Contributors