Is struts only for web applications only or for other also???
Jimmy Clark
Ranch Hand
Joined: Apr 16, 2008
Posts: 2187
posted
0
Struts provides a framework which is used to build web applications based on the Java Servlet specification. Struts provides a Controller servlet and a series of JSP tag libraries.
In order to build a web application with the Struts servlet and tag libraries, (1) the programmer must create the Java code that collaborates with the servlet, (2) the programmer must create configuration data that maps the Struts code and the application-specifc code, (3) optionally, the programmer will create JSP pages which may use the Struts tag libraries.
Take note the the application-specific code mentioned above is part of the Controller. There is another application here which handles business logic. The Controller code interacts with the business application to get things done. The Controller code interacts with the View to get and display data to the user.
Hope this helps!
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.