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

java web入门--001

程序员文章站 2024-01-30 20:21:34
...
(1)新建一个java 工程;
(2)然后再根目录下新建文件夹WebContent,并形成如下结构:
1--WebContent(所有与javaweb有关的都放在这里面)
2--WEB-INF(必须要建立一个这样的文件夹,名字也必须一模一样)
  3--classes(必须建立这样一个名字classes的文件夹,用来放置编译好的class文件)
  3--lib(需要的jar包)
  3--web.xml(web配置信息)
2--test.jsp(页面展示信息)
2--jsp页面..
2--html页面..
2--图片..
(3)在src下面新建一个类Person
package com.cmbc.model;


public class Person {


	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	private String name;
	private String password;
	@Override
	public String toString() {
		return "Person [name=" + name + ", password=" + password + "]";
	}
	
	
}
(4)手工地将Person类对应的class文件(含包)复制到classes文件夹中;


注:可以通过修改默认的输出目录以达到可以自动地将编译好的class放置到classes文件夹中:
具体为工程右键-->build path-->Configure Build Path-->Source-->然后将默认目录更改成为classes目录即可。


(5)在WebContent目录下新建一个jsp文件命名为test.jsp,如下所示:
<%@page import="com.cmbc.model.Person"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
	<%
		Person person = new Person();
		System.out.println(person);
	%>
</body>
</html>
jsp就是既可以写java代码又可以写html页面的东西。
放置Person类的时候,如果没有提示的话可以按Alt+/来自动引入该类;
(6)web.xml文件为
<?xml version="1.0" encoding="ISO-8859-1"?>


<web-app xmlns="http://java.sun.com/xml/ns/javaee"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
   version="2.5"> 


  
</web-app>
(7)最后把WebContent目录复制到tomcat的webapps目录下,并改名为helloword、


注意:如果通过配置文件配置的话则不需要手工地复制了。
配置文件怎么配置呢?可以新建一个xml文件,例如helloword2.xml,然后在里面配置如下:
<?xml version="1.0" encoding="UTF-8"?>


<Context docBase="G:\\Study_WorkSpace\\TomcatTest\\WebContent" path="/test2"
	reloadable="true" />

其中docBase为WebContent的真实物理路径,path为该javaweb的一个唯一标识【并没有什么用,可有可删掉】,reloadable为true即为每次更改类class的时候都会重新编译,并重新加载。
然后将helloword.xml放在C:\Program Files (x86)\Java\apache-tomcat-6.0.44\apache-tomcat-6.0.44\conf\Catalina\localhost  ç›®å½•ä¸‹ç„¶åŽå°±å¯ä»¥é€šè¿‡
http://localhost:8989/helloword2/test.jsp 【注意这里的helloword2即为xml配置文件的名字】

(8)然后再访问http://localhost:8989/helloworld/test.jsp
就可以在tomcat的dos窗口中看到自动打印的Person信息:
Person [name=null, password=null]