JSP学习笔记(一):tomcat7.0.6配置

1、先配置JRE环境:将Java的目录放到path

2、配置tomcat:

        (1)增加JAVA_HOME变量,值为G:\JAVA(Java的安装路径);

         (2)将%JAVA_HOME%\bin添加到path,再将tomcat的安装路径添加到path;

完成;

------------------分界线-------------------------------

3、注意:修改环境变量后,重启服务器即关闭cmd重新开启才能生效;

-----------------测试test------------------------------

1、写一个index.jsp:

<%@ page language="java" contentType="text/html; charset=utf-8"%>
<html>
<head>
<title>我的第一个页面</title>
</head>
<body>
Hello World!<br/>
<%
	String str="this is a index";
	out.println(str);
%>
</body>
</html>
2、写一个web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
3、文件保存:

(1)在tomcat的webapps目录里面,新建一个index目录,将index.jsp放进去

(2)再在index里面新建一个WEB-INF,将web.xml放进去,此时运行localhost:8080/index/index.jsp即可显示



你可能感兴趣的:(JSP学习笔记(一):tomcat7.0.6配置)