JavaWEB 核心编程视频教程 03

三、使用JAVAEE开发动态web工程

1、把开发选项切换到javaee

2、调出package explorer,在window-》showview中找到package explorer

3、servers中可以新建一个服务器,选择tomcat服务器

4、在package explorer中新建一个dynamic web project,然后就会生成一个按照web开发目录结构的部署结构

然后新建一个java的类,取名Person

package com.helloworld;

public class Person {
		public String getInfo(){
			return "hello gxlmsw1314";
		}
}
再新建一个Helloworld.JSP文件,可以直接在JSP中使用java代码,只需添加<% ................. %>

JSP中的代码: 使用alt+/自动导入java类包

<%@page import="com.helloworld.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.getInfo());	
	%>
</body>
</html>

5、可以通过run as -》 run on server 运行web项目


你可能感兴趣的:(JavaWEB 核心编程视频教程 03)