在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) {
%>
天气好
<%