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

Posted mark-to-win

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在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

以上是关于在eclipse当中如何做一个jsp的helloWorld?的主要内容,如果未能解决你的问题,请参考以下文章

Servlet jsp当中给出一个doPost例子

eclipse如何导入多个工程

Eclipse NDK “Hellow world”

jsp编译后文件位置在哪里

Eclipse中如何调试jsp页面?

网站中的jsp无法运行