java ee 部署问题 ,访问jsp报错
用eclipse导出一个war文件,把文件放在我自己电脑搭建的tomcat/webapps 目录下,访问jsp文件可以访问,一切正常。但是我把整个项目拷贝到老师搭建的服务器上,访问jsp(import了JavaBean类)报错。目录应该怎样才是正确的,jsp要在要配置web.xml吗?
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>PYQ</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<filter>
<filter-name>EncodingFilter</filter-name>
<filter-class>filter.EncodingFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>EncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
tomcat重启后,报错如下。ClassNotFoundException,可是刷新有时又出现上面的错误。
javaweb tomcat java-ee web部署 JSP
永恒F青英
10 years, 4 months ago