I copied pom.xml when I was going through the spring mvc tutorial online and it had:
<dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> </dependency>
From what I understand, spring has a built-in built-in injection for dependencies, will it override the default value and use javax.inject?
I also saw slf4j in pom, without further tweaking the code or xml.
How does this work under covers, spring checks the lib folder, and if any lib is found that is overridden, does it do this?
source share