Skip to content

Loosely coupled and tightly coupled #158

Closed Answered by soham0005
SaurabhS55 asked this question in Q&A
Discussion options

You must be logged in to vote

coupling refers to the degree of interdependence between software modules or components.

Tightly Coupled: Tightly coupled components are highly dependent on each other. Changes in one component often require changes in other components. This makes the system less flexible and harder to maintain or modify without affecting other parts.

Loosely Coupled: Loosely coupled components have minimal dependencies between them. Each component operates independently and can be modified or replaced without affecting other components. This promotes flexibility, scalability, and easier maintenance.

Springboot uses loosely coupled by using Annotation @Autowired annotation as part of its dependency inject…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by SaurabhS55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants