欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在eclipse当中如何做一个jsp的helloWorld?

程序员文章站 2022-03-10 15:57:25
在eclipse当中如何做一个jsp的helloWorld? ......

1.jsp的helloworld: 

做jsp的实验步骤非常简单。在eclipse当中,右键点击代表你webmodule的根目录的webcontent。new/jsp 即可。

例 1.1


<%@ page contenttype="text/html; charset=gbk"%>
<html>
<%!private int accesscount = 0;%>
<%!double called() {
        return math.random();
    }%>
<%=++accesscount%>
<%
    if (called() < 0.5) {
%>
天气好
<%

详情请见:http://www.mark-to-win.com/index.html?content=jsp/jspurl.html&chapter=jsp/jsp3_web.html#jsphelloworld