CICD Flashcards
1
Q
What challenges come with monolithic software
A
Hard to scale, Long CICD cycles, Hard to maintain, Lack of agility
2
Q
What is a microserice
A
A small, loosely coupled, distributed serice
3
Q
What is springboot
A
Microserice based framework
Profides easy maintenance and creation of REST endpoints
Includes embedded webserfer
Easy deployement
4
Q
What does @Component do?
A
Tells spring we want to create an instance and manage it
5
Q
What are stereotypes?
A
A way to categorise and identify classes
@Serfice, @RestController, @Repository
6
Q
A