In Struts MVC model, you have to go thought the Action Controller to get a new view page. In some cases, you really just need to get a specified JSP page only, it's so stupid to create an action controller class which just forward the page to you, fo…
Many developers like to put all Struts related stuff (action, form) into a single Struts configuration file. It's fast for the initial development but bad for the future maintenance, and may be those developers are not aware of the Struts is allow mu…
Every website need a welcome or default page as an entry point. Here's 3 ways to configure a welcome page in Struts. 1. index.jsp The simplest way is create a "index.jsp" page and put it same level with the WEB-INF folder, project root folder. A…