文献翻译原文Combining JSP and ServletsThe technology of JSP and Servlet is the most important technology which use Javatechnology to exploit request of server, and it is also the standard which exploit businessapplication .Java developers prefer to use it for a variety of reasons, one of which is alreadyfamiliar with the Java language for the development of this technology are easy to learn Javato the other is "a preparation, run everywhere" to bring the concept of Web applications, Toachieve a "one-prepared everywhere realized." And more importantly, if followed some of theprinciples of good design, it can be said of separating and content to create high-quality,reusable, easy to maintain and modify the application. For example, if the document in HTMLembedded Java code too much (script), will lead the developed application is extremelycomplex, difficult to read, it is not easy reuse, but also for future maintenance and modificationwill also cause difficulties. In fact, CSDN the JSP / Servlet forum, can often see some questions,the code is very long, can logic is not very clear, a large number of HTML and Java codemixed together. This is the random development of the defects.Early dynamic pages mainly CGI (Common Gateway Interface, public Gateway Interface)technology, you can use different languages of the CGI programs, such as VB, C / C + + orDelphi, and so on. Though the technology of CGI is developed and powerful, because ofdifficulties in programming, and low efficiency, modify complex shortcomings, it is graduallybeing replaced by the trend. Of all the new technology, JSP / Servlet with more efficient andeasy to program, more powerful, more secure and has a good portability, they have been ma...