java - What do I need to download to start developing apps using the Spring framework? -
I need to develop applications using the Spring Framework, and thinking about which tools I downloaded need to .
On the website I am looking to download all these applications and I wonder, do I really need it? Spring Framework
Do I need other applications to download (eg struts, glassfish, Apache, etc.)?
It depends on what you want to use for spring. Usually this is a web application, if so, then you only need two things:
- Spring Framework (with minimal dependency); And
- A servlet container (such as a tomcat) or fully developed application server (such as a glassfish, jboss).
Everything else is optional I believe Apache Commons logging is only the necessary dependency, depending on the features you use, you may need more.
If so, here is a [tutorial] [1] which creates an orange spring MVC project of Spring MVC project. There are countless other people for that and other topics.
It is possible to use spring in, say, a swing application in which you do not need the servlet container explicitly.
Comments
Post a Comment