JSP(Java服务器页面)是由Sun Microsystems公司牵头,联合多家企业共同制定的一种动态网页技术规范。该技术与ASP有相似之处,其核心是在标准的HTML网页文件(如.htm或.html)中嵌入Java代码片段(Scriptlet)以及特定的JSP标签,从而生成以*.jsp为扩展名的动态页面文件。
One of the fundamental goals of JSP pages is to decouple business logic from presentation; often JSP page developers tend to use a lot of messy scriptlet code. This approach not only clutters the page ...