首先出现的是安装向导欢迎界面,直接点击“next”继续,选择安装类型,选择“自定义”custom安装,然后点“next”下一步,出现自定义安装界面,选择安装路径:c:/mysql server 4.1(可自定义)点“ok”返回到自定义安装界面,路径已改为设置的路径,点“next”,准备开始安装,点“install”开始安装,完成后出现创建mysql.com帐号的界面。
“install as windows service”一定要勾选,这是将mysql作为windows的服务运行。“service name”就用默认的“mysql”下面的“launch the mysql server automatically”一定要勾选,这样windows启动时,mysql就会自动启动服务,要不然就要手工启动mysql。
<?xml version="1.0" encoding="iso-8859-1"?> <!doctype web-app public "-//sun microsystems,inc.//dtd web application 2.3//en" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <display-name>my web application</display-name> <description> a application for test. </description> </web-app>
在myapp下用记事本新建一个测试的jsp页面,文件名为index.jsp,文件内容如下:
<html><body><center> now time is: <%=new java.util.date()%> </center></body></html>
重启tomcat
打开浏览器,输入http://localhost:8080/myapp/index.jsp
看到当前时间的话说明成功安装。
建立自己的servlet:
用记事本新建一个servlet程序,文件名为helloworld.java,文件内容如下:
import java.io.*;import javax.servlet.*;import javax.servlet.http.*;public class helloworld extends httpservlet{public void doget(httpservletrequest request,httpservletresponse response)throws servletexception,ioexception{response.setcontenttype("text/html"); printwriter out = response.getwriter();out.println("<html><head><title>");out.println("this is my first servlet");out.println("</title></head><body>");out.println("<h1>hello,world!</h1>");out.println("</body></html>");}}
package test; public class testbean{ private string name = null; public testbean(string strname_p){ this.name=strname_p; } public void setname(string strname_p){ this.name=strname_p; } public string getname(){ return this.name; } }
<%@ page import="test.testbean" %> <html><body><center> <% testbean testbean=new testbean("this is a test java bean."); %> java bean name is:<%=testbean.getname()%> </center></body></html>
重启tomcat,启动浏览器,输入http://localhost:8080/myapp/testbean.jsp 如果看到输出java bean name is: this is a test java bean 就说明编写的javabean成功了。