Hello i am new to java spring concepts . .so i downloaded a sample spring application and import that into eclipse ..i have read from spring tutorials either i have to install m
I'm new too and for what I can say you can use your pom.xml to add all the dependencies that you need. For example, if you need to add spring context, you can just write its name and version. Maven thinks of how to find and import it.
The syntax of the example is:
org.springframework
spring-context
3-0
For every dependence that you need, just write is groupId, artifactID and version, within the dependency
tag and maven will think of everything.
Hence you will have a list of these dependency tags in the pom.xml.
Moreover, don't forget Maven use its structure ;)