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_3_0.xsd"
version="3.0"
metadata-complete="true">
</web-app>
JSP里面的代码是这样的
<!doctype html>
<html>
<head>
<title>我的第一个JSP页面</title>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
</head>
<body>
<h1></欢迎大家访问我的主页></h1>
</body>
</html>
访问猫脸页面都可以,但是访问JSP出现了404,这是咋回事啊?
1、项目是否加载到服务器上面去 (停止服务器 重新启动加载试试)
2、web.xml中没有设定默认的初始界面(地址栏只写项目名 不写文件名时候加载的页面)
那怎么以管理员身份运行Tomcat啊
谢谢了,不过不是这些问题,而是运行Tomcat的时候没以管理员权限运行,我是WIN10的系统,弄了一下午才弄出来
<web-app>
.........
.........
........
<welcome-file-list>
<welcome-file>文件名(自己写的页面).jsp</welcome-file>
</welcome-file-list><!--需要添加到文件中的部分-->
.........
.........
</web-app>
项目发布到服务器上了?